tags:

views:

67

answers:

1

Hi, When my parser is scanning a source file and some syntax is incorrect, and it calls yyerror, I want it to display the error message, but continue parsing the file to potentially display more errors. However, every time the parser calls yyerror, it displays the error message and then exits? What can I do?

+2  A: 

Here is your solution: http://web.mit.edu/gnu/doc/html/bison_9.html

Stephen Cross
thanks, that page was very helpful.
Silmaril89