1
0
şunun yansıması https://github.com/minetest-mods/intllib.git eşitlendi 2025-10-20 01:15:16 +02:00

Output character itself if unknown escape.

Bu işleme şunda yer alıyor:
Diego Martínez
2017-01-24 23:22:16 -03:00
ebeveyn a3f9090ee8
işleme e72ab692e0

Dosyayı Görüntüle

@@ -25,7 +25,7 @@ local function unescape(str)
local bsl = #bs
local realbs = strrep("\\", bsl/2)
if bsl%2 == 1 then
c = escapes[c]
c = escapes[c] or c
end
return realbs..c
end))