Browse Source

* fix from Jeff Pohlmeyer <[email protected]> for problem with
variables/parameters called l, L, u or U

Jonas Maebe 22 years ago
parent
commit
c38ebece5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/h2pas/scan.l

+ 1 - 1
utils/h2pas/scan.l

@@ -443,7 +443,7 @@ D [0-9]
                           return(CSTRING)
                         else
                           return(256);
-{D}*[Uu]?[Ll]?          begin
+{D}+[Uu]?[Ll]?          begin
                            while yytext[length(yytext)] in ['L','U','l','u'] do
                              Delete(yytext,length(yytext),1);
                            return(NUMBER);