From owner-freebsd-current@FreeBSD.ORG Fri Aug 3 16:31:50 2007 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3ED0A16A418; Fri, 3 Aug 2007 16:31:50 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id E62FD13C45D; Fri, 3 Aug 2007 16:31:49 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 2A49BEB4558; Sat, 4 Aug 2007 00:31:49 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id DkWJ17ddgKUn; Sat, 4 Aug 2007 00:31:47 +0800 (CST) Received: from charlie.delphij.net (unknown [221.221.170.75]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 06DD9EB4577; Sat, 4 Aug 2007 00:31:47 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type:content-transfer-encoding; b=fBaBtBptSRpfsN1YpYediBFBI0c+0oghGUg1UYLksShPV1HB0y6WXOAkwIgNT3N9n 92acqaMKiWRrcjM2TBM4g== Message-ID: <46B35872.5020307@delphij.net> Date: Sat, 04 Aug 2007 00:31:46 +0800 From: Xin LI User-Agent: Thunderbird 2.0.0.6 (X11/20070803) MIME-Version: 1.0 To: Daniel Eischen References: <20070729124116.GA4489@saltmine.radix.net> <20070729135024.GA473@saltmine.radix.net> <20070729144202.GA17101@saltmine.radix.net> <46ACA806.5030704@FreeBSD.org> <6eb82e0707290944s2531e32cuf50c9f7c60509070@mail.gmail.com> <46B1ECFE.6070806@delphij.net> In-Reply-To: <46B1ECFE.6070806@delphij.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: delphij@freebsd.org, Rong-en Fan , re@FreeBSD.ORG, current@freebsd.org Subject: Re: TERM={xterm-r5,xterm-r6} behaving badly with man(1) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2007 16:31:50 -0000 Hi, Daniel, Xin LI wrote: > Daniel Eischen wrote: >> On Mon, 30 Jul 2007, Rong-en Fan wrote: > [...] >> It looks like the less import broke this behavior (inhibiting ti/te >> when invoked as more). See the changes between r1.7 and r1.8 of >> contrib/less/screen.c. > [...] >> This seems to fix it: >> >> Index: main.c >> =================================================================== >> RCS file: /opt/FreeBSD/cvs/src/contrib/less/main.c,v >> retrieving revision 1.9 >> diff -u -r1.9 main.c >> --- main.c 23 Jun 2007 15:28:00 -0000 1.9 >> +++ main.c 30 Jul 2007 02:58:39 -0000 >> @@ -165,7 +165,7 @@ >> quit(QUIT_OK); >> } >> >> - if (less_is_more && get_quit_at_eof()) >> + if (less_is_more || get_quit_at_eof()) >> no_init = quit_if_one_screen = TRUE; > > This sounds reasonable to me, actually more(1) implies quit_at_eof. > > To re@, may I commit this change against -HEAD? Please commit this change if re@ approves it in the upcoming two or three days. This is definitely an annoying bug and I'm afraid that I have to leave my workstation for a short while :-) Cheers,