summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-06-13 15:03:24 +0200
committergbrandl <devnull@localhost>2007-06-13 15:03:24 +0200
commitc0fab929c01decaabaea33a36978f21e33a22674 (patch)
tree574b0f604c513865cb201a2d2263f1ed2b56c6ff
parentd6f4807834356d320d75760464a4c4210926520d (diff)
downloadpygments-c0fab929c01decaabaea33a36978f21e33a22674.tar.gz
[svn] Merged r3702 to trunk.
-rw-r--r--CHANGES6
-rw-r--r--pygments/lexers/agile.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 3264af87..c280458f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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|'