summaryrefslogtreecommitdiff
path: root/patches/vba/basic-not-is-nothing.diff
diff options
context:
space:
mode:
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: