diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-01 15:11:14 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-04-01 15:11:14 +0000 |
commit | b85734e5a8a8069eb9cdd9e433d87a48ad56cd2e (patch) | |
tree | cf36ee99baf262132ed098112ce81365db1c7f5b /devel/libedit/files/patch-src_eln.c | |
parent | Update lang/gcc and hence the default version of GCC in the Ports (diff) |
Update libedit to 20170329
Diffstat (limited to 'devel/libedit/files/patch-src_eln.c')
-rw-r--r-- | devel/libedit/files/patch-src_eln.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/devel/libedit/files/patch-src_eln.c b/devel/libedit/files/patch-src_eln.c deleted file mode 100644 index 3021c89d94a7..000000000000 --- a/devel/libedit/files/patch-src_eln.c +++ /dev/null @@ -1,21 +0,0 @@ ---- src/eln.c.orig 2015-03-25 21:02:28.000000000 +0100 -+++ src/eln.c 2015-03-28 11:42:29.913925000 +0100 -@@ -75,12 +75,17 @@ public const char * - el_gets(EditLine *el, int *nread) - { - const wchar_t *tmp; -+ int nwread; -+ -+ *nread = 0; - - if (!(el->el_flags & CHARSET_IS_UTF8)) - el->el_flags |= IGNORE_EXTCHARS; -- tmp = el_wgets(el, nread); -+ tmp = el_wgets(el, &nwread); - if (!(el->el_flags & CHARSET_IS_UTF8)) - el->el_flags &= ~IGNORE_EXTCHARS; -+ for (int i = 0; i < nwread; i++) -+ *nread += ct_enc_width(tmp[i]); - return ct_encode_string(tmp, &el->el_lgcyconv); - } - |