summaryrefslogtreecommitdiff
path: root/lang/wsbasic/patches/patch-ab
diff options
context:
space:
mode:
authorminskim <minskim>2005-10-26 21:38:30 +0000
committerminskim <minskim>2005-10-26 21:38:30 +0000
commit41d28421daf0e50dd815f8c5af5e78a925309334 (patch)
treea25f14741006ad8356cb9cefc1c1b476fed9325e /lang/wsbasic/patches/patch-ab
parent02e0b50765c24721f9c457723cb19bc65251f8f1 (diff)
downloadpkgsrc-41d28421daf0e50dd815f8c5af5e78a925309334.tar.gz
Update wsbasic to 1.2.5. Patches provided by Geert Hendrickx.
Changes: - patch-ab and patch-ac were incorporated.
Diffstat (limited to 'lang/wsbasic/patches/patch-ab')
-rw-r--r--lang/wsbasic/patches/patch-ab13
1 files changed, 0 insertions, 13 deletions
diff --git a/lang/wsbasic/patches/patch-ab b/lang/wsbasic/patches/patch-ab
deleted file mode 100644
index c5bd1ef7378..00000000000
--- a/lang/wsbasic/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/10/26 15:58:54 minskim Exp $
-
---- number.h.orig 2004-06-09 02:20:18.000000000 +0200
-+++ number.h
-@@ -26,7 +26,7 @@ class Number{
- //==============
- void toString(); //explicit conversion to string strVal
- void toDouble(); //explicit conversion to double val
-- void setValue( double d ){ val=d; strVal.clear(); bString=false;}
-+ void setValue( double d ){ val=d; bString=false;}
- void setValue( const string& s ){ strVal=s; bString=true;}
-
- void minus(){ val=-val; }