summaryrefslogtreecommitdiff
path: root/pygments/lexers/text.py
diff options
context:
space:
mode:
authorthatch <devnull@localhost>2009-09-18 18:59:58 -0700
committerthatch <devnull@localhost>2009-09-18 18:59:58 -0700
commitb6b647accb2bc7d80e5c340a47daeb72a359e2ec (patch)
treee2788379d8cab0fa5b900d54a802890e4165fb89 /pygments/lexers/text.py
parenta9169767d5ef0ca94ccb3406da2f743fdd5ac562 (diff)
downloadpygments-b6b647accb2bc7d80e5c340a47daeb72a359e2ec.tar.gz
Add example file for !CMake
Diffstat (limited to 'pygments/lexers/text.py')
-rw-r--r--pygments/lexers/text.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py
index 75be58ba..7a35c991 100644
--- a/pygments/lexers/text.py
+++ b/pygments/lexers/text.py
@@ -1554,7 +1554,6 @@ class CMakeLexer(RegexLexer):
(r'\(', Punctuation, '#push'),
(r'\)', Punctuation, '#pop'),
(r'(\${)(.+?)(})', bygroups(Operator, Name.Variable, Operator)),
- (r'$\w+', Name.Variable),
(r'(?s)".*?"', String.Double),
(r'\\\S+', String),
(r'[^\)$"# \t\n]+', String),