aboutsummaryrefslogtreecommitdiffstats
path: root/enc/trans/escape.trans
diff options
context:
space:
mode:
Diffstat (limited to 'enc/trans/escape.trans')
-rw-r--r--enc/trans/escape.trans6
1 files changed, 3 insertions, 3 deletions
diff --git a/enc/trans/escape.trans b/enc/trans/escape.trans
index f45f27bc41..a2fbebac33 100644
--- a/enc/trans/escape.trans
+++ b/enc/trans/escape.trans
@@ -8,14 +8,14 @@
transcode_tblgen("", "amp_escape", [
["{00-25,27-FF}", :nomap],
["26", hexstr("&")]
- ])
+ ], nil)
transcode_tblgen("", "xml_text_escape", [
["{00-25,27-3B,3D,3F-FF}", :nomap],
["26", hexstr("&")],
["3C", hexstr("<")],
["3E", hexstr(">")]
- ])
+ ], nil)
transcode_tblgen("", "xml_attr_content_escape", [
["{00-21,23-25,27-3B,3D,3F-FF}", :nomap],
@@ -23,7 +23,7 @@
["26", hexstr("&")],
["3C", hexstr("<")],
["3E", hexstr(">")]
- ])
+ ], nil)
map_xml_attr_quote = {}
map_xml_attr_quote["{00-FF}"] = :func_so