From: Go MAEDA Date: Sat, 29 Feb 2020 11:18:18 +0000 (+0000) Subject: Fix a RuboCop offence Style/NegatedWhile (#32971). X-Git-Tag: 4.2.0~1177 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0ba13a0bd3fb19d63eccbbf1ee5d35f65a210d8e;p=redmine.git Fix a RuboCop offence Style/NegatedWhile (#32971). git-svn-id: http://svn.redmine.org/redmine/trunk@19542 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- 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