Fixes a regexp for ruby1.9.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3015 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2009-11-07 09:43:02 +00:00
parent be41f7f473
commit 668ec7f694
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ class RedCloth3 < String
end
end
QUOTES_RE = /(^>+([^\n]*?)\n?)+/m
QUOTES_RE = /(^>+([^\n]*?)(\n|$))+/m
QUOTES_CONTENT_RE = /^([> ]+)(.*)$/m
def block_textile_quotes( text )