From 06f5482631d917b0a275ff046d331b1498c4d7d2 Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 14 Oct 2000 01:31:30 +0000 Subject: [PATCH] Skip the o radix in octal numbers. --- lexor.lex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lexor.lex b/lexor.lex index d7505cb60..bbe5181f9 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.47 2000/08/01 02:14:34 steve Exp $" +#ident "$Id: lexor.lex,v 1.48 2000/10/14 01:31:30 steve Exp $" #endif //# define YYSTYPE lexval @@ -461,6 +461,7 @@ static verinum*make_sized_octal(const char*txt) ptr += 1; } assert(tolower(*ptr) == 'o'); + ptr += 1; /* We know from the size number how bit to make the verinom array, so make it now. */