diff --git a/lexor.lex b/lexor.lex index 56eda9de9..4dc4c9c3f 100644 --- a/lexor.lex +++ b/lexor.lex @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: lexor.lex,v 1.76 2003/02/02 18:58:36 steve Exp $" +#ident "$Id: lexor.lex,v 1.77 2003/03/18 01:36:14 steve Exp $" #endif # include "config.h" @@ -174,6 +174,7 @@ W [ \t\b\f\r]+ \(\?\?\) { return '*'; } \(01\) { return 'r'; } \(0[xX]\) { return 'Q'; } +\(b[xX]\) { return 'q'; } \(0\?\) { return 'P'; } \(10\) { return 'f'; } \(1[xX]\) { return 'M'; } diff --git a/parse.y b/parse.y index 200bd6cfd..e2355cf8d 100644 --- a/parse.y +++ b/parse.y @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if HAVE_CVS_IDENT -#ident "$Id: parse.y,v 1.173 2003/02/27 06:45:11 steve Exp $" +#ident "$Id: parse.y,v 1.174 2003/03/18 01:36:14 steve Exp $" #endif # include "config.h" @@ -2818,6 +2818,7 @@ udp_input_sym | 'p' { $$ = 'p'; } | 'P' { $$ = 'P'; } | 'Q' { $$ = 'Q'; } + | 'q' { $$ = 'q'; } | '_' { $$ = '_'; } | '+' { $$ = '+'; } ;