diff options
author | Toomas Soome <tsoome@me.com> | 2018-02-20 20:47:27 +0200 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2018-02-22 15:59:20 +0000 |
commit | e10a6edabdc38e5fd1d9da6a6a54774a41f91b22 (patch) | |
tree | 7c13dc34bb080d1f2597261aa19c621dc53c3017 /usr/src | |
parent | e501678557789347eedf20b9e0f9a5014f56f18d (diff) | |
download | illumos-gate-e10a6edabdc38e5fd1d9da6a6a54774a41f91b22.tar.gz |
9152 loader: allow comma in variable names
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/boot/sys/boot/forth/support.4th | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/boot/sys/boot/forth/support.4th b/usr/src/boot/sys/boot/forth/support.4th index b95068f745..40492769b5 100644 --- a/usr/src/boot/sys/boot/forth/support.4th +++ b/usr/src/boot/sys/boot/forth/support.4th @@ -533,8 +533,8 @@ also parser definitions line_pointer begin end_of_line? if 0 else - letter? digit? underscore? dot? dash? - or or or or + letter? digit? underscore? dot? dash? comma? + or or or or or then while skip_character |