Add tSTRING to the pathname production, so that you can quote a

pathname which contains 'odd' characters.
oldstable
C. Scott Ananian 2005-03-14 10:48:29 +00:00 committed by Alexandre Julliard
parent 28c2b5494f
commit a418694d05
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ command:
pathname:
identifier { $$ = $1; }
| tSTRING { $$ = $1; }
| tPATH { $$ = $1; }
;