diff options
author | leonidas <devnull@localhost> | 2006-11-26 22:57:31 +0100 |
---|---|---|
committer | leonidas <devnull@localhost> | 2006-11-26 22:57:31 +0100 |
commit | 1698cf234384c6cadfc76f480ba4712fb6d94b9c (patch) | |
tree | 3e67f8501f0c2dca310b0f9b247e5b58695821dd | |
parent | d765ed8155c1876b454ea2ec5e6c819cd8da7fdb (diff) | |
download | pygments-1698cf234384c6cadfc76f480ba4712fb6d94b9c.tar.gz |
[svn] Fix in char syntax
-rw-r--r-- | pygments/lexers/agile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index b8adbf70..158f5617 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -876,7 +876,7 @@ class SchemeLexer(RegexLexer): # strings, symbols and characters (r'"(\\\\|\\"|[^"])*"', String), (r"'[a-zA-Z0-9]+", String.Symbol), - (r"#\\([()/'\".'_!§$%&?=+-]{1}|[a-zA-Z0-9]+)", String.Char), + (r"#\\([()/'\".'_!§$%& ?=+-]{1}|[a-zA-Z0-9]+)", String.Char), # constants (r'(#t|#f)', Name.Constant), |