1
1

* textconf.c: Don't use SLANG_TERMINFO, which is unused anywhere

else.  Assume that terminfo is used if USE_TERMCAP is undefined.
Этот коммит содержится в:
Pavel Roskin 2002-09-07 07:36:59 +00:00
родитель 4071f3da86
Коммит 9deca156f0
2 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2002-09-07 Pavel Roskin <proski@gnu.org>
* textconf.c: Don't use SLANG_TERMINFO, which is unused anywhere
else. Assume that terminfo is used if USE_TERMCAP is undefined.
2002-09-06 Pavel Roskin <proski@gnu.org>
* subshell.c (subshell_name_quote): Return NULL if we are out of

Просмотреть файл

@ -59,12 +59,10 @@ static const char * const features [] = {
" ",
#ifdef SLANG_TERMINFO
N_("with terminfo database"),
#elif defined(USE_TERMCAP)
#ifdef USE_TERMCAP
N_("with termcap database"),
#else
N_("with an unknown terminal database"),
N_("with terminfo database"),
#endif
#elif defined(USE_NCURSES)