------- Comment #12 from hjl at lucon dot org 2006-02-12 01:31 ------- It looks like that unget_char needs to modified to increase the supported number of unget. The current number is 1. We can't do
unget_char (dtp, c); unget_char (dtp, c); unget_char (dtp, c); We can have an unget buffer in st_parameter_dt and change last_char to a pointer which indexes to the unget buffer. The unget buffer only needs big enough to hold the longest logical string we want to support. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26136