Skip to content

Commit

Permalink
(#433) back quotation uses atou_if_needed now
Browse files Browse the repository at this point in the history
  • Loading branch information
hymkor committed Aug 6, 2023
1 parent d289e8f commit 6da0a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nyagos.d/backquote.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backquote = {
if not r then
return false
end
r = nyagos.atou(r)
r = nyagos.atou_if_needed(r)
r = string.gsub(r,'["|&<>!]',function(m)
return string.format('%%u+%04X%%',string.byte(m,1,1))
end)
Expand Down

0 comments on commit 6da0a65

Please sign in to comment.