diff --git a/src/ChangeLog b/src/ChangeLog index 2323f23b9..d27dac278 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-09-07 Pavel Roskin + + * 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 * subshell.c (subshell_name_quote): Return NULL if we are out of diff --git a/src/textconf.c b/src/textconf.c index 7fb12e684..466303690 100644 --- a/src/textconf.c +++ b/src/textconf.c @@ -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)