diff options
-rw-r--r-- | lib/redmine/wiki_formatting/textile/redcloth3.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/textile/redcloth3.rb b/lib/redmine/wiki_formatting/textile/redcloth3.rb index c9bdd0aeb..7114dd214 100644 --- a/lib/redmine/wiki_formatting/textile/redcloth3.rb +++ b/lib/redmine/wiki_formatting/textile/redcloth3.rb @@ -1025,7 +1025,7 @@ class RedCloth3 < String end if /^ +\S/.match?(text) indt = 0 - indt += 1 while !/^ {#{indt}}\S/.match?(text) + indt += 1 until /^ {#{indt}}\S/.match?(text) if indt.nonzero? text.gsub!( /^ {#{indt}}/, '' ) end |