aboutsummaryrefslogtreecommitdiff
path: root/nomsu.lua
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-06-13 14:53:47 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-06-13 14:54:08 -0700
commit282565a309aef632502a64fef0a67b0b7efcfaaa (patch)
treeff0ef6f4e065312cbed298e5b3e8f384d8563e05 /nomsu.lua
parent12d52f743c47c9fcb244b3d6221a18057d0a9e48 (diff)
Fixed tree_to_nomsu to produce "blah\%x" instead of "blah\(%x)"
Diffstat (limited to 'nomsu.lua')
-rw-r--r--nomsu.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/nomsu.lua b/nomsu.lua
index c552534..540fa8e 100644
--- a/nomsu.lua
+++ b/nomsu.lua
@@ -904,11 +904,11 @@ do
for _index_0 = 1, #tree do
local bit = tree[_index_0]
if type(bit) == 'string' then
- nomsu:append((gsub(gsub(bit, "\\", "\\\\"), "\n", "\\n")))
+ nomsu:append((gsub(gsub(gsub(bit, "\\", "\\\\"), "\n", "\\n"), '"', '\\"')))
else
local interp_nomsu = self:tree_to_nomsu(bit, true)
if interp_nomsu then
- if bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
+ if bit.type ~= "Var" and bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
interp_nomsu:parenthesize()
end
nomsu:append("\\", interp_nomsu)
@@ -960,7 +960,7 @@ do
else
local interp_nomsu = self:tree_to_nomsu(bit, true)
if interp_nomsu then
- if bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
+ if bit.type ~= "Var" and bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
interp_nomsu:parenthesize()
end
nomsu:append("\\", interp_nomsu)