From aaa7bc6cf4f2ce135ed49daa8cc0295fa3ffaf8e Mon Sep 17 00:00:00 2001 From: Xin LI Date: Tue, 4 Sep 2007 13:54:09 +0000 Subject: [PATCH] Restore historical behavior where more(1) does not check for dumb terminals. Reported by: rwatson on -current Tested by: keramida, rwatson Approved by: re (rwatson) --- contrib/less/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/less/main.c b/contrib/less/main.c index 17201a9da06..e139a62d0cf 100644 --- a/contrib/less/main.c +++ b/contrib/less/main.c @@ -244,7 +244,7 @@ main(argc, argv) quit(QUIT_OK); } - if (missing_cap && !know_dumb) + if (missing_cap && !know_dumb && !less_is_more) error("WARNING: terminal is not fully functional", NULL_PARG); init_mark(); open_getchr();