don't drop unhandled characters

This commit is contained in:
Dagen Brock 2019-04-29 06:36:21 -05:00
parent 83ff82b5fe
commit 401f9fad56
1 changed files with 6 additions and 0 deletions

View File

@ -227,6 +227,12 @@ source_contents.each_line do |line|
elsif in_operand
buf << c
x+=1
# if they have unhandled weirdness, just pass them through minus whitespace
else
if !c.strip.empty?
buf << c
x+=1
end
end
end
end