summaryrefslogtreecommitdiff
path: root/pygments/lexers/other.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-01-12 15:53:28 +0100
committergbrandl <devnull@localhost>2007-01-12 15:53:28 +0100
commitefaccf6fd1322930aca142dd1a96d06d1bae84a3 (patch)
treef6aa6dcc5167601a07b7e10a9ab27d26fc47de9d /pygments/lexers/other.py
parent65750ddadbe26b140083030b6ac062e1af4a79b0 (diff)
downloadpygments-efaccf6fd1322930aca142dd1a96d06d1bae84a3.tar.gz
[svn] Make check.
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r--pygments/lexers/other.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 37e5b18e..cede911f 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -113,9 +113,9 @@ class SqlLexer(RegexLexer):
Name.Builtin),
(r'[+*/<>=~!@#%^&|`?^-]', Operator),
(r'[0-9]+', Number.Integer),
- # TODO: Backslash escapes?
+ # TODO: Backslash escapes?
(r"'(''|[^'])*'", String.Single),
- (r'"(""|[^"])*"', String.Symbol), # not a real string literal in ANSI SQL
+ (r'"(""|[^"])*"', String.Symbol), # not a real string literal in ANSI SQL
(r"`(``|[^`])*`", String.Backtick),
(r'[a-zA-Z_][a-zA-Z0-9_]*', Name),
(r'[;:()\[\],\.]', Punctuation)