Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wau-scanner.lua
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function printer.comment(s)
if printer.include_comments then
local toprint = s:gsub("^%s*", "-- "):gsub("\n%s*", "\n-- ")
for line in (toprint ..'\n'):gmatch'(.-)\r?\n' do
printer.line(line)
printer.line("%s", line)
end
end
return printer
Expand Down
Loading