# HG changeset patch # User Claus Gittinger # Date 1354372147 -3600 # Node ID a95137a3ab6a7ab699d895159ad796e15549e9f8 # Parent ed96c98bff4aa42eab1cb8f27ae3d8fbd1ba53bd class: PPToken changed: #newline fix for stx's stupid cr/return incompatibility diff -r ed96c98bff4a -r a95137a3ab6a PPParser.st --- a/PPParser.st Sat Dec 01 15:27:17 2012 +0100 +++ b/PPParser.st Sat Dec 01 15:29:07 2012 +0100 @@ -162,9 +162,9 @@ ! negate - "Answer a new parser consumes any input token but the receiver." - - ^ self not , #any asParser ==> #second + "Answer a new parser consumes any input token but the receiver." + + ^ self not , #any asParser ==> #second ! not @@ -459,11 +459,11 @@ !PPParser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.3 2012-05-04 22:01:24 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.4 2012-12-01 14:29:07 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.3 2012-05-04 22:01:24 vrany Exp $' + ^ '$Header: /cvs/stx/stx/goodies/petitparser/PPParser.st,v 1.4 2012-12-01 14:29:07 cg Exp $' ! version_SVN