Fix misleading error message.

This commit is contained in:
Bart Schaefer 2001-09-20 14:45:07 +00:00
parent 92c0432f9c
commit b27659c6b3
2 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,12 @@
2001-09-20 Bart Schaefer <schaefer@zsh.org>
* 15847: Src/init.c: Avoid using the word "termcap" in an error
message when it may in fact have been curses or terminfo that
failed.
2001-09-19 Peter Stephenson <pws@csr.com>
* 15846: aczsh.m4: attempt to restore LDFLAGS from non-existent
* 15846: aczsh.m4: Fix attempt to restore LDFLAGS from non-existent
saved value when testing RTLD_GLOBAL.
2001-09-18 Wayne Davison <wayned@users.sourceforge.net>

View file

@ -541,7 +541,7 @@ init_term(void)
#endif
if (isset(INTERACTIVE))
zerr("can't find termcap info for %s", term, 0);
zerr("can't find terminal definition for %s", term, 0);
errflag = 0;
termflags |= TERM_BAD;
return 0;