Fixed typo in proproc.y

This commit is contained in:
Michael Meskes 2001-10-05 06:39:23 +00:00
parent 7547b0104a
commit c83137a025
2 changed files with 5 additions and 1 deletions

View File

@ -1112,5 +1112,9 @@ TUe Okt 2 16:09:26 CEST 2001
- Re-added Tom's patch fixing my setlocale patch. I accidently
deleted it.
Fri Okt 5 08:37:01 CEST 2001
- Fixed yet another typo in preproc.y.
- Set ecpg version to 2.9.0.
- Set library version to 3.3.0.

View File

@ -2044,7 +2044,7 @@ opt_name: name { $$ = $1; }
| /*EMPTY*/ { $$ = EMPTY; }
;
opt_column: COLUMN { $$ = make_str("colmunn"); }
opt_column: COLUMN { $$ = make_str("column"); }
| /*EMPTY*/ { $$ = EMPTY; }
;