*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 05 Nov 2009 23:12:25 +0100
changeset 2261 d1d8233ef59f
parent 2260 af122fe6b80d
child 2262 82e1879fe7ed
*** empty log message ***
Parser.st
--- a/Parser.st	Thu Nov 05 18:37:55 2009 +0100
+++ b/Parser.st	Thu Nov 05 23:12:25 2009 +0100
@@ -9433,7 +9433,7 @@
 
     [
         (tokenType = $*) 
-        or:[((tokenType == #BinaryOperator) and:[tokenName conform:[:ch | ch = '*']])]
+        or:[((tokenType == #BinaryOperator) and:[tokenName conform:[:ch | ch = $*]])]
     ] whileTrue:[
         "/ that many indirections added
         tokenName size timesRepeat:[
@@ -9715,11 +9715,11 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.619 2009-11-05 14:52:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.620 2009-11-05 22:12:25 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.619 2009-11-05 14:52:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.620 2009-11-05 22:12:25 cg Exp $'
 ! !
 
 Parser initialize!