From 8e97a0e4d435e6f9379b11dbd596d5b15d848e94 Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 9 Sep 2005 02:13:15 +0000 Subject: [PATCH] Support b1 edge in primitive tables. --- lexor.lex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lexor.lex b/lexor.lex index 04c362f77..aea31b876 100644 --- a/lexor.lex +++ b/lexor.lex @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: lexor.lex,v 1.86.2.1 2005/09/04 15:33:19 steve Exp $" +#ident "$Id: lexor.lex,v 1.86.2.2 2005/09/09 02:13:15 steve Exp $" #endif # include "config.h" @@ -180,6 +180,7 @@ W [ \t\b\f\r]+ \(0[xX]\) { return 'Q'; } \(b[xX]\) { return 'q'; } \(b0\) { return 'f'; /* b0 is 10|00, but only 10 is meaningful */} +\(b1\) { return 'r'; /* b1 is 11|01, but only 01 is meaningful */} \(0\?\) { return 'P'; } \(10\) { return 'f'; } \(1[xX]\) { return 'M'; }