diff options
Diffstat (limited to 'src/termcap.c')
-rw-r--r-- | src/termcap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/termcap.c b/src/termcap.c index d26348e525c..2a270c454eb 100644 --- a/src/termcap.c +++ b/src/termcap.c @@ -443,6 +443,11 @@ tgetent (bp, name) } #endif /* INTERNAL_TERMINAL */ + /* For compatibility with programs like `less' that want to + put data in the termcap buffer themselves as a fallback. */ + if (bp) + term_entry = bp; + termcap_name = getenv ("TERMCAP"); if (termcap_name && *termcap_name == '\0') termcap_name = NULL; |