[Prev][Next][Index]
(un)parser: string token concatenation broken
- To: sage-bugs@extreme.indiana.edu
- Subject: (un)parser: string token concatenation broken
- Date: Thu, 27 Apr 1995 15:37:46 -0700
- From: Lars Thomas Hansen <lth@cs.uoregon.edu>
- Sender: owner-sage-bugs@extreme.indiana.edu
Consider the following valid statement:
printf( "this is a " "test" ); // no comma!
When parsed and unparsed, it becomes
printf( "this is a " );
i.e., string token concatenation does not appear to work.
--lars