summaryrefslogtreecommitdiff
path: root/lang/wsbasic/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'lang/wsbasic/patches/patch-ac')
-rw-r--r--lang/wsbasic/patches/patch-ac34
1 files changed, 0 insertions, 34 deletions
diff --git a/lang/wsbasic/patches/patch-ac b/lang/wsbasic/patches/patch-ac
deleted file mode 100644
index d5807d74cf9..00000000000
--- a/lang/wsbasic/patches/patch-ac
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2005/10/26 15:58:54 minskim Exp $
-
---- executer.cpp.orig 2005-01-27 01:27:53.000000000 +0100
-+++ executer.cpp
-@@ -641,7 +641,8 @@ void Executer::execLeft( TreeNode* node
- GET_BINARY_OPERANDS
- string val = a->strVal;
- int to = (int) b->val;
-- delete a,b;
-+ delete a;
-+ delete b;
- runStack.pop();
-
- if( ( to >= 0 ) && ( to < (int)val.size() ) ){
-@@ -658,7 +659,8 @@ void Executer::execRight( TreeNode* node
- GET_BINARY_OPERANDS
- string val = a->strVal;
- int to = (int) b->val;
-- delete a,b;
-+ delete a;
-+ delete b;
- runStack.pop();
-
- if( ( to >= 0 ) && ( to < (int)val.size() ) ){
-@@ -681,7 +683,8 @@ void Executer::execMid( TreeNode* node )
- GET_BINARY_OPERANDS
- string val = a->strVal;
- int from = (int) b->val-1;
-- delete a,b;
-+ delete a;
-+ delete b;
- runStack.pop();
-
- int to=0;