summaryrefslogtreecommitdiff
path: root/pygments/lexers/webmisc.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2018-11-25 08:37:32 +0100
committerGeorg Brandl <georg@python.org>2018-11-25 08:37:32 +0100
commit6866f8b98f4051603b560e6f6313b74eee7a12a9 (patch)
treeb9fede197239933d0b9bc6fda0030c70d281eb03 /pygments/lexers/webmisc.py
parent67ca36ddb9b8b00c9158db00fcb3e10bd6e78c58 (diff)
downloadpygments-6866f8b98f4051603b560e6f6313b74eee7a12a9.tar.gz
Minimal fixup changes for the release, add release date.2.3.0
Diffstat (limited to 'pygments/lexers/webmisc.py')
-rw-r--r--pygments/lexers/webmisc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pygments/lexers/webmisc.py b/pygments/lexers/webmisc.py
index 712c8246..30dd3717 100644
--- a/pygments/lexers/webmisc.py
+++ b/pygments/lexers/webmisc.py
@@ -661,7 +661,8 @@ class XQueryLexer(ExtendedRegexLexer):
# NAMESPACE KEYWORD
(r'(declare)(\s+)(default)(\s+)(element|function)',
- bygroups(Keyword.Declaration, Text, Keyword.Declaration, Text, Keyword.Declaration), 'namespacekeyword'),
+ bygroups(Keyword.Declaration, Text, Keyword.Declaration, Text, Keyword.Declaration),
+ 'namespacekeyword'),
(r'(import)(\s+)(schema|module)',
bygroups(Keyword.Pseudo, Text, Keyword.Pseudo), 'namespacekeyword'),
(r'(declare)(\s+)(copy-namespaces)',