aboutsummaryrefslogtreecommitdiff
path: root/pkg/cl/lex.com
blob: 32c198cd201a0daa93f49dafa1fcd4d970b804b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
$! Fix the lexyy.c file  (see lex.sed)   [VMS]
$!
$ open/write fp lex_fix.com
$ write fp "$ edit/edt/nocommand lexyy.c"
$ write fp "sub/getc(yyin)/yy_getc(yyin)/w"
$ write fp "sub/yylex/lex_yylex/w"
$ write fp "sub/YYLMAX 200/YYLMAX 2048/w"
$ write fp "exit"
$ write fp "$ exit"
$ close fp
$ @lex_fix.com
$ delete lex_fix.com;*