rev 297 - trunk/src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins
Date: 2004-04-07 14:11:48 -0400 (Wed, 07 Apr 2004)
New Revision: 297
Modified:
trunk/src/prothon.y
Log:
Add missing semi-colon. Patch from Kenny MacDermid.
Modified: trunk/src/prothon.y
===================================================================
--- trunk/src/prothon.y 2004-04-06 22:43:52 UTC (rev 296)
+++ trunk/src/prothon.y 2004-04-07 18:11:48 UTC (rev 297)
@@ -441,6 +441,7 @@
{ $$ = (void *)(unsigned long)__IS__QUES; }
| NOT
{ $$ = (void *)(unsigned long)__ISNOT__QUES; }
+ ;
expr:
expr OR expr