- Timestamp:
- Sep 6, 2012 3:17:44 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/parser.c
r2628 r2630 809 809 for (;;) { /* until token or start of word found */ 810 810 c = pgetc_macro(psh); 811 trace(psh, "xxreadtoken: c=%#x", c);812 811 if (c == ' ' || c == '\t') 813 812 continue; /* quick check for white space first */ … … 855 854 case ')': 856 855 RETURN(TRP); 857 856 default: 858 857 goto breakloop; 859 858 } … … 1621 1620 } else { 1622 1621 trace(psh, "synerror: Syntax error: %s\n", msg); 1623 1622 } 1624 1623 outfmt(&psh->errout, "Syntax error: %s\n", msg); 1625 1624 error(psh, (char *)NULL);
Note:
See TracChangeset
for help on using the changeset viewer.