From: Nick Bowler Date: Thu, 14 Jul 2011 23:40:39 +0000 (-0400) Subject: Fix error name of ellipsis token. X-Git-Tag: v1~132 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/78c39d5b7e488ea127ceb1f4bdb11030040106fb Fix error name of ellipsis token. So it says unexpected ... instead of unexpected . --- diff --git a/src/parse.y b/src/parse.y index c76bc65..5887e4d 100644 --- a/src/parse.y +++ b/src/parse.y @@ -152,7 +152,7 @@ void cdecl_free(struct cdecl *decl) %token T_LBRACKET "[" %token T_RBRACKET "]" %token T_COMMA "," -%token T_ELLIPSIS "." +%token T_ELLIPSIS "..." %token T_TYPEDEF "typedef" %token T_EXTERN "extern"