mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-04 20:40:57 +02:00
11850: Fix crash in menu-select on dumb terminals. Also, a ChangeLog entry
for PWS's 11842.
This commit is contained in:
parent
6b87e6fda3
commit
060ac27a17
2 changed files with 15 additions and 0 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
|||
2000-06-10 Bart Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 11850: Src/Zle/complist.c: Don't try to menuselect in a listing
|
||||
that isn't there, e.g., because the TERM is too dumb to draw it.
|
||||
|
||||
2000-06-09 Peter Stephenson <pws@cambridgesiliconradio.com>
|
||||
|
||||
* 11842 (repeat of 11838): Doc/Zsh/builtins.yo, Src/builtin.c,
|
||||
Src/params.c, Src/subst.c, Src/zsh.h, Src/Modules/mapfile.c,
|
||||
Src/Modules/parameter.c: add the HIDEVAL parameter attribute and
|
||||
set it by default for parameters created by the mapfile and
|
||||
parameter modules, to restore sanity of `typeset' output.
|
||||
|
||||
2000-06-09 Clint Adams <schizo@debian.org>
|
||||
|
||||
* 11839: Src/signals.c: prevent segmentation fault in
|
||||
|
|
|
@ -1627,6 +1627,8 @@ domenuselect(Hookdef dummy, Chdata dat)
|
|||
int space, lbeg = 0, step = 1, wrap, pl = nlnct, broken = 0, first = 1;
|
||||
char *s;
|
||||
|
||||
if (!mtab)
|
||||
return 0;
|
||||
if (fdat || (dummy && (!(s = getsparam("MENUSELECT")) ||
|
||||
(dat && dat->num < atoi(s))))) {
|
||||
if (fdat) {
|
||||
|
|
Loading…
Reference in a new issue