diff options
author | peter <peter@FreeBSD.org> | 1999-11-17 01:01:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-11-17 01:01:02 +0000 |
commit | 0c3ce35c8e45176f0dc67ede6a19fca00dae6080 (patch) | |
tree | 29e4245466f61581454498fb91b19dca0d448d08 /lib/libncurses | |
parent | acdcaf54ec4d93ec3479046012e6dedf1ecc9b0b (diff) | |
download | FreeBSD-src-0c3ce35c8e45176f0dc67ede6a19fca00dae6080.zip FreeBSD-src-0c3ce35c8e45176f0dc67ede6a19fca00dae6080.tar.gz |
Don't complain loudly about unknown termcap capabilities, eg:
{vladivostok:/usr/home/ken:1:0} echo |more
"TERMCAP", line 0, col 60, terminal 'screen': unknown capability 'G0'
"TERMCAP", line 0, col 806, terminal 'screen': unknown capability 'AX'
Submitted by: Kenneth D. Merry <ken@kdm.org>
Diffstat (limited to 'lib/libncurses')
-rw-r--r-- | lib/libncurses/termcap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libncurses/termcap.c b/lib/libncurses/termcap.c index e2bde8b..9469bea 100644 --- a/lib/libncurses/termcap.c +++ b/lib/libncurses/termcap.c @@ -234,7 +234,7 @@ done: return(ERR); _nc_set_source("TERMCAP"); - _nc_read_entry_source((FILE *)NULL, _nc_termcap, FALSE, FALSE,NULLHOOK); + _nc_read_entry_source((FILE *)NULL, _nc_termcap, FALSE, TRUE, NULLHOOK); if (_nc_head == (ENTRY *)NULL) return(ERR); |