rev 262 - trunk/src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins Date: 2004-04-02 22:39:30 -0500 (Fri, 02 Apr 2004) New Revision: 262 Modified: trunk/src/prothon.y Log: Fix obvious bug. Prettu this was supposed to be a test, and not setting c. Modified: trunk/src/prothon.y =================================================================== --- trunk/src/prothon.y 2004-04-03 02:40:08 UTC (rev 261) +++ trunk/src/prothon.y 2004-04-03 03:39:30 UTC (rev 262) @@ -1248,7 +1248,7 @@ } clist_pop(state->indent_stack); } - if (c = ':') state->last_line_colon = TRUE; + if (c == ':') state->last_line_colon = TRUE; return c; }