From: <fwi...@us...> - 2008-08-03 20:17:42
|
Revision: 5071 http://jython.svn.sourceforge.net/jython/?rev=5071&view=rev Author: fwierzbicki Date: 2008-08-03 20:17:40 +0000 (Sun, 03 Aug 2008) Log Message: ----------- Partial fix for #1092 (just a comment no newline). Modified Paths: -------------- branches/asm/grammar/Python.g Modified: branches/asm/grammar/Python.g =================================================================== --- branches/asm/grammar/Python.g 2008-08-03 18:18:34 UTC (rev 5070) +++ branches/asm/grammar/Python.g 2008-08-03 20:17:40 UTC (rev 5071) @@ -1418,6 +1418,6 @@ $channel=HIDDEN; } : {startPos==0}?=> (' '|'\t')* '#' (~'\n')* '\n'+ - | {startPos>0}?=> '#' (~'\n')* // let NEWLINE handle \n unless char pos==0 for '#' + | '#' (~'\n')* // let NEWLINE handle \n unless char pos==0 for '#' ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |