diff options
Diffstat (limited to 'pygments/lexers')
-rw-r--r-- | pygments/lexers/dylan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/dylan.py b/pygments/lexers/dylan.py index 5e95a5e3..9875fc08 100644 --- a/pygments/lexers/dylan.py +++ b/pygments/lexers/dylan.py @@ -88,7 +88,7 @@ class DylanLexer(RegexLexer): 'type-error-value', 'type-for-copy', 'type-union', 'union', 'values', 'vector', 'zero?')) - valid_name = '\\\\?[a-z0-9!&*<>|^$%@_\\-+~?/=]+' + valid_name = '\\\\?[\\w!&*<>|^$%@\\-+~?/=]+' def get_tokens_unprocessed(self, text): for index, token, value in RegexLexer.get_tokens_unprocessed(self, text): |