diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2000-06-10 17:30:22 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2000-06-10 17:30:22 +0000 |
commit | 060ac27a1720fc7c207dfda8fc6fb4377db49971 (patch) | |
tree | dd39f8541e61af8fec550bb054159f2136fa696c /Src/Zle/complist.c | |
parent | 6b87e6fda32ce20feab9b4922c8841d5329c232f (diff) | |
download | zsh-060ac27a1720fc7c207dfda8fc6fb4377db49971.tar.gz zsh-060ac27a1720fc7c207dfda8fc6fb4377db49971.tar.xz zsh-060ac27a1720fc7c207dfda8fc6fb4377db49971.zip |
11850: Fix crash in menu-select on dumb terminals. Also, a ChangeLog entry
for PWS's 11842.
Diffstat (limited to 'Src/Zle/complist.c')
-rw-r--r-- | Src/Zle/complist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index cbc39266f..c1481612b 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -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) { |