- The yywrap solution was wrong; it should return 1. Fixed now.

This commit is contained in:
ccremers 2004-07-17 19:52:07 +00:00
parent ca975ed970
commit ff178f46a5

View File

@ -153,7 +153,8 @@ void strings_cleanup(void)
int yywrap (void)
{
return 0;
/* signal true to let lex know that nothing else is coming */
return 1;
}