From 0d7be4af0dc6efa30a187ba4f897f773460a2944 Mon Sep 17 00:00:00 2001 From: Jun-ichi Takimoto Date: Thu, 25 Jun 2015 00:22:02 +0900 Subject: 35550: fix backspace in interactive menu-select --- ChangeLog | 5 +++++ Src/Zle/complist.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d0e2b256d..574e5fa73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-06-24 Jun-ichi Takimoto + + * 35550: Src/Zle/complist.c: fix backspace in interactive + mode of menu-select + 2015-06-24 Peter Stephenson * 35514: Han Pingtian: Src/pattern.c: [[:foo:]] diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index 0f73181f3..ccee9a724 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -2655,7 +2655,7 @@ domenuselect(Hookdef dummy, Chdata dat) s->nbrbeg = nbrbeg; s->nbrend = nbrend; s->nmatches = nmatches; - s->origline = origline; + s->origline = dupstring(origline); s->origcs = origcs; s->origll = origll; s->status = dupstring(status); @@ -2786,7 +2786,7 @@ domenuselect(Hookdef dummy, Chdata dat) s->nbrbeg = nbrbeg; s->nbrend = nbrend; s->nmatches = nmatches; - s->origline = origline; + s->origline = dupstring(origline); s->origcs = origcs; s->origll = origll; s->status = dupstring(status); -- cgit 1.4.1