summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorheav <hheav3@gmail.com>2022-11-14 22:06:18 +0000
committerheav <hheav3@gmail.com>2022-11-14 22:06:18 +0000
commit1aa3639c98c9d285ab7e101fdf8ee1c562d9a8dd (patch)
tree15e72808f9f1e1a7e2f69d23ecb64aae7cb02953
parentd32b17b91e0f555608af98124a43c6908ec615a0 (diff)
small correction.
-rw-r--r--messagelog.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/messagelog.lua b/messagelog.lua
index 9f05ab4..9ce20cf 100644
--- a/messagelog.lua
+++ b/messagelog.lua
@@ -26,7 +26,7 @@ local function unesc(x)
local c2 = x:sub(i+1,i+1)
if c2 == "\\" then res = res .. "\\" end
if c2 == "a" then res = res .. "\01" end
- if c2 == "b" then res = res .. "\01" end
+ if c2 == "b" then res = res .. "\02" end
if c2 == "p" then res = res .. "|" end
i = i + 1
else