/[bison]/bison/src/scan-skel.l
ViewVC logotype

Diff of /bison/src/scan-skel.l

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by akim, Sun Dec 30 21:06:22 2001 UTC revision 1.4 by akim, Sun Dec 30 21:06:36 2001 UTC
# Line 64  Line 64 
64    return '\n';    return '\n';
65  }  }
66    
67      /* White spaces.  */
68    [\t ]+ {
69      yylval.literal = yytext;
70      return BLANKS;
71    }
72    
73    /* Plain Character.  */    /* Plain Character.  */
74  . {  . {
75    yylval.character = *yytext;    yylval.character = *yytext;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26