summaryrefslogtreecommitdiff
path: root/devel/libedit/files/patch-src_eln.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/libedit/files/patch-src_eln.c')
-rw-r--r--devel/libedit/files/patch-src_eln.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/devel/libedit/files/patch-src_eln.c b/devel/libedit/files/patch-src_eln.c
new file mode 100644
index 000000000000..96c826b1299f
--- /dev/null
+++ b/devel/libedit/files/patch-src_eln.c
@@ -0,0 +1,16 @@
+--- src/eln.c.orig 2015-01-07 22:26:24 UTC
++++ src/eln.c
+@@ -76,9 +76,11 @@ el_gets(EditLine *el, int *nread)
+ {
+ const wchar_t *tmp;
+
+- el->el_flags |= IGNORE_EXTCHARS;
++ if (!(el->el_flags & CHARSET_IS_UTF8))
++ el->el_flags |= IGNORE_EXTCHARS;
+ tmp = el_wgets(el, nread);
+- el->el_flags &= ~IGNORE_EXTCHARS;
++ if (!(el->el_flags & CHARSET_IS_UTF8))
++ el->el_flags &= ~IGNORE_EXTCHARS;
+ return ct_encode_string(tmp, &el->el_lgcyconv);
+ }
+