1
0
mirror of https://github.com/digarok/radius.git synced 2024-06-12 11:29:27 +00:00

don't drop unhandled characters

This commit is contained in:
Dagen Brock 2019-04-29 06:36:21 -05:00
parent 83ff82b5fe
commit 401f9fad56

View File

@ -227,6 +227,12 @@ source_contents.each_line do |line|
elsif in_operand elsif in_operand
buf << c buf << c
x+=1 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 end
end end