summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorMatth?us G. Chajdas <dev@anteru.net>2019-04-02 20:41:31 +0200
committerMatth?us G. Chajdas <dev@anteru.net>2019-04-02 20:41:31 +0200
commit1ed3f0862974c87af1b22c9402c8803339bfb055 (patch)
tree2fd8a948b4d912010b126ce4651e13fa069a2ec0 /pygments
parenta21ac4cbf8a90e799e46eb947416b53d47c867c0 (diff)
downloadpygments-1ed3f0862974c87af1b22c9402c8803339bfb055.tar.gz
Fix invalid escape sequence in stata builtins, update CHANGES.
else\sif is invalid, and not needed given else and if are already valid keywords.
Diffstat (limited to 'pygments')
-rw-r--r--pygments/lexers/_stata_builtins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/_stata_builtins.py b/pygments/lexers/_stata_builtins.py
index 13a3dacf..3e5e75b2 100644
--- a/pygments/lexers/_stata_builtins.py
+++ b/pygments/lexers/_stata_builtins.py
@@ -15,7 +15,7 @@ builtins_special = (
)
builtins_base = (
- "if", "else", "else\s+if", "in", "foreach", "for", "forv", "forva",
+ "if", "else", "in", "foreach", "for", "forv", "forva",
"forval", "forvalu", "forvalue", "forvalues", "by", "bys",
"bysort", "quietly", "qui", "about", "ac",
"ac_7", "acprplot", "acprplot_7", "adjust", "ado", "adopath",