1
0
mirror of https://github.com/minetest-mods/intllib.git synced 2025-02-13 10:10:17 +01:00

Add some missing escape sequences.

Fixes #7.
This commit is contained in:
Diego Martínez 2016-10-06 04:22:00 -03:00
parent c1ddaf66da
commit e058fc93a8

View File

@ -7,6 +7,10 @@ intllib.INSERTION_CHAR = INS_CHAR
local escapes = {
["\\"] = "\\",
["n"] = "\n",
["s"] = " ",
["t"] = "\t",
["r"] = "\r",
["f"] = "\f",
[INS_CHAR] = INS_CHAR..INS_CHAR,
}