use %r{} instead of // at lib/redmine/unified_diff.rb

Syntax highlight is broken in gedit 2.28.4 on CentOS 6.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11542 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2013-03-07 04:07:09 +00:00
parent 5984adc3df
commit 39b9599360
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ module Redmine
@parsing = true
end
else
if line =~ /^[^\+\-\s@\\]/
if line =~ %r{^[^\+\-\s@\\]}
@parsing = false
return false
elsif line =~ /^@@ (\+|\-)(\d+)(,\d+)? (\+|\-)(\d+)(,\d+)? @@/