summaryrefslogtreecommitdiff
path: root/patches/vba/basic-not-is-nothing.diff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-01-28 21:26:09 +0100
committerMichael Stahl <mstahl@redhat.com>2012-01-28 21:26:09 +0100
commit7947d959db2a84860cdfd479d95ea5b30fdba051 (patch)
tree4cc2ec4d16ee75d338f85d966b089ca5a0240097 /patches/vba/basic-not-is-nothing.diff
parent2786d0238b25d7bcc1408bb1a45a8f7f4bd1febd (diff)
replace obsolete "master" branch with README that points at new repoHEADmaster-deletedmaster
Diffstat (limited to 'patches/vba/basic-not-is-nothing.diff')
-rw-r--r--patches/vba/basic-not-is-nothing.diff17
1 files changed, 0 insertions, 17 deletions
diff --git a/patches/vba/basic-not-is-nothing.diff b/patches/vba/basic-not-is-nothing.diff
deleted file mode 100644
index 72fe8f2ab..000000000
--- a/patches/vba/basic-not-is-nothing.diff
+++ /dev/null
@@ -1,17 +0,0 @@
---- basic/source/comp/exprtree.cxx.orig 2008-07-16 13:59:41.000000000 +0800
-+++ basic/source/comp/exprtree.cxx 2008-07-21 09:30:56.000000000 +0800
-@@ -495,6 +495,14 @@ SbiExprNode* SbiExpression::Operand()
- switch( eTok = pParser->Peek() )
- {
- case SYMBOL:
-+ pRes = Term();
-+ // process something like "IF Not r Is Nothing Then .."
-+ if( pParser->IsVBASupportOn() && pParser->Peek() == IS )
-+ {
-+ eTok = pParser->Next();
-+ pRes = new SbiExprNode( pParser, pRes, eTok, Like() );
-+ }
-+ break;
- case DOT: // .with
- pRes = Term(); break;
- case NUMBER: