FUEL: fix regexp for number literals

db4
Björn Lindqvist 2013-09-20 22:08:58 +02:00 committed by John Benediktsson
parent 9f8648e1e7
commit 08cf1b3567
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ source/docs/tests file. When set to false, you'll be asked only once."
"^AFTER: +\\([^ ]+\\) +\\([^ ]+\\)") "^AFTER: +\\([^ ]+\\) +\\([^ ]+\\)")
(defconst factor-integer-regex (defconst factor-integer-regex
"\\_<-?[0-9]\\([xob][0-9a-fA-F]+\\|[0-9]*\\)?\\_>") "\\_<-?\\(0[xob][0-9a-fA-F]+\\|[0-9]+\\)\\_>")
(defconst factor-raw-float-regex (defconst factor-raw-float-regex
"[0-9]*\\.[0-9]*\\([eEpP][+-]?[0-9]+\\)?") "[0-9]*\\.[0-9]*\\([eEpP][+-]?[0-9]+\\)?")