Hi, To reproduce:
$ cat >/tmp/t.l <<DOC
%%
DOC
$ flex -t /tmp/t.l | grep ' After all that talk'
num_to_alloc = 1; // After all that talk, this was set to 1
anyways...
Whereas after rebuilding flex on amd64:
$ flex -t /tmp/t.l | grep ' After all that talk'
num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
Regards,
Salvatore

