summaryrefslogtreecommitdiff
path: root/pygments/lexers/other.py
diff options
context:
space:
mode:
authorGaurav Jain <gaurav@gauravjain.org>2014-05-15 22:57:54 -0400
committerGaurav Jain <gaurav@gauravjain.org>2014-05-15 22:57:54 -0400
commit455118b5ccd5538b727daec1b6b8e7b5ee85ef22 (patch)
treefc12d4b1b57eefe59b21e5e5fa8f9e76964ccd1b /pygments/lexers/other.py
parent4eb6e4dd67d57197d3a077cf4aeca6736ef85d5b (diff)
downloadpygments-455118b5ccd5538b727daec1b6b8e7b5ee85ef22.tar.gz
Overlap in character class
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r--pygments/lexers/other.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 5bb60560..b7672fda 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -1619,7 +1619,7 @@ class ABAPLexer(RegexLexer):
(r'\".*?\n', Comment.Single),
],
'variable-names': [
- (r'<[\S_]+>', Name.Variable),
+ (r'<\S+>', Name.Variable),
(r'\w[\w~]*(?:(\[\])|->\*)?', Name.Variable),
],
'root': [