From 3c5e16f80b21d076ad1b63f3c7df96af29bbc4df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Wed, 6 Jun 2018 13:17:05 -0400 Subject: [PATCH] text: escape_to_mk should not escape = MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/core/text/abstract_text.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/text/abstract_text.nit b/lib/core/text/abstract_text.nit index 38f3e49..351da66 100644 --- a/lib/core/text/abstract_text.nit +++ b/lib/core/text/abstract_text.nit @@ -794,7 +794,7 @@ abstract class Text else if c == ':' or c == ' ' or c == '#' then b.add('\\') b.add(c) - else if c.code_point < 32 or c == ';' or c == '|' or c == '\\' or c == '=' then + else if c.code_point < 32 or c == ';' or c == '|' or c == '\\' then b.append("?{c.code_point.to_base(16)}") else b.add(c) -- 1.7.9.5