Merge pull request #6 from digarok/indentation-comments-nooper

fix incorrect min bounds check/set
This commit is contained in:
Dagen Brock 2019-04-29 08:52:10 -05:00 committed by GitHub
commit 2afb8755ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ source_contents.each_line do |line|
elsif c == ';' && !in_operand
in_comment = true
# protect against "negative" spacing
spaces = 1 > (comment_col_x-x) ? 1 : (comment_col_x-x)
spaces = 0 > (comment_col_x-x) ? 0 : (comment_col_x-x)
buf << " "*spaces
x+=comment_col_x-x