summaryrefslogtreecommitdiff
path: root/pygments/lexers/compiled.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-22 12:02:06 +0200
committerGeorg Brandl <georg@python.org>2010-08-22 12:02:06 +0200
commitd5122e5bba3d40a2a957eaa2ed230d713f558bb8 (patch)
tree040ced54e3158e6d8be829bbb7661537773a58c8 /pygments/lexers/compiled.py
parentfba2500b4ebbd0b1073280c636f18b923671073d (diff)
parent71d3ab5ede6b2535f09538d18a7f63037f9e845d (diff)
downloadpygments-d5122e5bba3d40a2a957eaa2ed230d713f558bb8.tar.gz
merge with tim
Diffstat (limited to 'pygments/lexers/compiled.py')
-rw-r--r--pygments/lexers/compiled.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/compiled.py b/pygments/lexers/compiled.py
index d996f369..eb386500 100644
--- a/pygments/lexers/compiled.py
+++ b/pygments/lexers/compiled.py
@@ -1373,7 +1373,7 @@ class PrologLexer(RegexLexer):
(r'[0-9]+', Number),
(r'[\[\](){}|.,;!]', Punctuation),
(r':-|-->', Punctuation),
- (r'"(?:\\x[0-9a-fA-F]+\\|\\u[0-9a-fA-F]{4}|\U[0-9a-fA-F]{8}|'
+ (r'"(?:\\x[0-9a-fA-F]+\\|\\u[0-9a-fA-F]{4}|\\U[0-9a-fA-F]{8}|'
r'\\[0-7]+\\|\\[\w\W]|[^"])*"', String.Double),
(r"'(?:''|[^'])*'", String.Atom), # quoted atom
# Needs to not be followed by an atom.