diff options
author | Steve Spigarelli <spig@spig.net> | 2011-07-08 08:35:23 -0600 |
---|---|---|
committer | Steve Spigarelli <spig@spig.net> | 2011-07-08 08:35:23 -0600 |
commit | 8a0082870fc8373552cffcfc8c6768f8b991a00c (patch) | |
tree | 1bbd96d93b95b25c878dd8a128299b5345df1cfb | |
parent | 852890b6165d2b58588a519b00a7ed7050acc0a2 (diff) | |
download | pygments-8a0082870fc8373552cffcfc8c6768f8b991a00c.tar.gz |
fixed bug with empty-sequence itemtype
-rw-r--r-- | pygments/lexers/web.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index df164375..5ffacc8b 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -2279,7 +2279,7 @@ class XQueryLexer(ExtendedRegexLexer): (r'void\s*\(\s*\)', bygroups(Keyword, Text, Punctuation, Text, Punctuation), 'operator'), (r'(element|attribute|schema-element|schema-attribute|comment|text|' - r'node|binary|document-node)(\s*)(\()', + r'node|binary|document-node|empty-sequence)(\s*)(\()', pushstate_occurrenceindicator_kindtest_callback), # Marklogic specific type? (r'(processing-instruction)(\s*)(\()', |