Checking M109/M190 for R should actually check for R and not S
Thanks @FHeilmann
This commit is contained in:
parent
e15956883a
commit
cd578dc2e1
1 changed files with 1 additions and 1 deletions
|
|
@ -48,7 +48,7 @@ regex_float = re.compile(regex_float_pattern)
|
|||
|
||||
regexes_parameters = dict(
|
||||
floatP=re.compile("(^|[^A-Za-z])[Pp](?P<value>%s)" % regex_float_pattern),
|
||||
floatR=re.compile("(^|[^A-Za-z])[Ss](?P<value>%s)" % regex_float_pattern),
|
||||
floatR=re.compile("(^|[^A-Za-z])[Rr](?P<value>%s)" % regex_float_pattern),
|
||||
floatS=re.compile("(^|[^A-Za-z])[Ss](?P<value>%s)" % regex_float_pattern),
|
||||
floatZ=re.compile("(^|[^A-Za-z])[Zz](?P<value>%s)" % regex_float_pattern),
|
||||
intN=re.compile("(^|[^A-Za-z])[Nn](?P<value>%s)" % regex_int_pattern),
|
||||
|
|
|
|||
Loading…
Reference in a new issue