diff options
author | gbrandl <devnull@localhost> | 2007-06-13 15:03:24 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-06-13 15:03:24 +0200 |
commit | c0fab929c01decaabaea33a36978f21e33a22674 (patch) | |
tree | 574b0f604c513865cb201a2d2263f1ed2b56c6ff | |
parent | d6f4807834356d320d75760464a4c4210926520d (diff) | |
download | pygments-c0fab929c01decaabaea33a36978f21e33a22674.tar.gz |
[svn] Merged r3702 to trunk.
-rw-r--r-- | CHANGES | 6 | ||||
-rw-r--r-- | pygments/lexers/agile.py | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -9,6 +9,12 @@ Version 0.9 enhanced. You shouldn't get UnicodeErrors from it anymore if you don't give an encoding option. +Version 0.8.1 +------------- +(released Jun XX, 2007) + +- Fixed POD highlighting in the Ruby lexer. + - Fixed Unicode class and namespace name highlighting in the C# lexer. - Fixed Unicode string prefix highlighting in the Python lexer. diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index b3c2cfdf..eb2cff5b 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -409,7 +409,7 @@ class RubyLexer(ExtendedRegexLexer): tokens = { 'root': [ (r'#.*?$', Comment.Single), - (r'=begin\n.*?\n=end', Comment.Multiline), + (r'=begin\s.*?\n=end', Comment.Multiline), # keywords (r'(BEGIN|END|alias|begin|break|case|defined\?|' r'do|else|elsif|end|ensure|for|if|in|next|redo|' |