From unknown Tue Jun 17 20:19:28 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#9409 <9409@debbugs.gnu.org> To: bug#9409 <9409@debbugs.gnu.org> Subject: Status: 24.0.50; log-view-msg-prev, easy-mmode Reply-To: bug#9409 <9409@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:19:28 +0000 retitle 9409 24.0.50; log-view-msg-prev, easy-mmode reassign 9409 emacs submitter 9409 Eduard Wiebe severity 9409 minor tag 9409 moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 30 15:38:09 2011 Received: (at submit) by debbugs.gnu.org; 30 Aug 2011 19:38:09 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QyU8O-0006Xu-OV for submit@debbugs.gnu.org; Tue, 30 Aug 2011 15:38:09 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QyU8M-0006Xn-J8 for submit@debbugs.gnu.org; Tue, 30 Aug 2011 15:38:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QyU5I-0001N5-Iq for submit@debbugs.gnu.org; Tue, 30 Aug 2011 15:34:57 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:46220) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyU5I-0001N1-HK for submit@debbugs.gnu.org; Tue, 30 Aug 2011 15:34:56 -0400 Received: from eggs.gnu.org ([140.186.70.92]:59412) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyU5G-0002Ya-TP for bug-gnu-emacs@gnu.org; Tue, 30 Aug 2011 15:34:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QyU5F-0001MH-Ps for bug-gnu-emacs@gnu.org; Tue, 30 Aug 2011 15:34:54 -0400 Received: from wp093.webpack.hosteurope.de ([80.237.132.100]:51831) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QyU5F-0001Ks-Ku for bug-gnu-emacs@gnu.org; Tue, 30 Aug 2011 15:34:53 -0400 Received: from g226225041.adsl.alicedsl.de ([92.226.225.41] helo=nirvana); authenticated by wp093.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) id 1QyU5C-0004ph-0f; Tue, 30 Aug 2011 21:34:50 +0200 Received: from ew by nirvana with local (Exim 4.72) (envelope-from ) id 1QyU2R-0001dm-4y for bug-gnu-emacs@gnu.org; Tue, 30 Aug 2011 21:31:59 +0200 From: Eduard Wiebe To: bug-gnu-emacs@gnu.org Subject: 24.0.50; log-view-msg-prev, easy-mmode Date: Tue, 30 Aug 2011 21:31:59 +0200 Message-ID: <87aaaqpufk.fsf@pusto.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-bounce-key: webpack.hosteurope.de;ew@pusto.de;1314732893;b0cc139c; X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.2 (-----) --=-=-= Content-Type: text/plain Hi all, it bothers me that in some situation i cannot reach the head information of the `vc-print-log' via `log-view-msg-prev'. I fixed the issue by following simple patch. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=easy-mmode.el.patch === modified file 'lisp/emacs-lisp/easy-mmode.el' --- lisp/emacs-lisp/easy-mmode.el 2011-01-25 04:08:28 +0000 +++ lisp/emacs-lisp/easy-mmode.el 2011-08-27 16:50:49 +0000 @@ -578,7 +578,8 @@ (if (< count 0) (,next-sym (- count)) ,(funcall when-narrowed `(unless (re-search-backward ,re nil t count) - (error "No previous %s" ,name))) + (goto-char (point-min)) + (error "No previous %s" ,name))) ,@body)) (put ',prev-sym 'definition-name ',base)))) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 02 20:40:40 2011 Received: (at 9409) by debbugs.gnu.org; 3 Sep 2011 00:40:40 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QzeHn-0006Mw-MQ for submit@debbugs.gnu.org; Fri, 02 Sep 2011 20:40:40 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QzeHl-0006Mo-3G for 9409@debbugs.gnu.org; Fri, 02 Sep 2011 20:40:38 -0400 Received: from localhost ([127.0.0.1]:55253) by fencepost.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzeEO-0006ZX-SZ; Fri, 02 Sep 2011 20:37:08 -0400 From: Glenn Morris To: Eduard Wiebe Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode References: <87aaaqpufk.fsf@pusto.de> X-Spook: CIA Albright Geraldton ISEC jihad White Water Clinton X-Ran: QKbo*NxDNIA%"[tafBSA8cxpqJY^tZg3IxfY+0FK;KEPC&I[lnoRf}bD@ry!PJ?j[_$Esv X-Hue: cyan X-Debbugs-No-Ack: yes X-Attribution: GM Date: Fri, 02 Sep 2011 20:37:08 -0400 Message-ID: <96bov28nrf.fsf@fencepost.gnu.org> User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.4 (------) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.4 (------) Eduard Wiebe wrote: > `(unless (re-search-backward ,re nil t count) > - (error "No previous %s" ,name))) > + (goto-char (point-min)) > + (error "No previous %s" ,name))) Or: - `(unless (re-search-backward ,re nil t count) + `(unless (re-search-backward ,re nil 'move count) From debbugs-submit-bounces@debbugs.gnu.org Sat Sep 03 13:47:35 2011 Received: (at 9409) by debbugs.gnu.org; 3 Sep 2011 17:47:35 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QzuJb-0000PW-77 for submit@debbugs.gnu.org; Sat, 03 Sep 2011 13:47:35 -0400 Received: from wp093.webpack.hosteurope.de ([80.237.132.100]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QzuJY-0000PO-IF for 9409@debbugs.gnu.org; Sat, 03 Sep 2011 13:47:33 -0400 Received: from g227002205.adsl.alicedsl.de ([92.227.2.205] helo=nirvana); authenticated by wp093.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) id 1QzuG7-0005h5-Rb; Sat, 03 Sep 2011 19:43:59 +0200 Received: from ew by nirvana with local (Exim 4.72) (envelope-from ) id 1QzuDL-0000nt-8A; Sat, 03 Sep 2011 19:41:07 +0200 From: Eduard Wiebe To: Glenn Morris Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode References: <87aaaqpufk.fsf@pusto.de> <96bov28nrf.fsf@fencepost.gnu.org> Date: Sat, 03 Sep 2011 19:41:07 +0200 In-Reply-To: <96bov28nrf.fsf@fencepost.gnu.org> (Glenn Morris's message of "Fri, 02 Sep 2011 20:37:08 -0400") Message-ID: <87zkilfrrg.fsf@pusto.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-bounce-key: webpack.hosteurope.de;ew@pusto.de;1315071841;0d7e4517; X-Spam-Score: -4.5 (----) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.4 (----) Glenn Morris writes: > Eduard Wiebe wrote: > >> `(unless (re-search-backward ,re nil t count) >> - (error "No previous %s" ,name))) >> + (goto-char (point-min)) >> + (error "No previous %s" ,name))) > > Or: > > - `(unless (re-search-backward ,re nil t count) > + `(unless (re-search-backward ,re nil 'move count) Yes, much nicer. Thanks. Can you apply this patch to the trunk. -- Eduard Wiebe From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 06 20:44:00 2011 Received: (at 9409) by debbugs.gnu.org; 7 Sep 2011 00:44:00 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R16FD-0000Hx-Me for submit@debbugs.gnu.org; Tue, 06 Sep 2011 20:44:00 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R16F9-0000Ho-7J for 9409@debbugs.gnu.org; Tue, 06 Sep 2011 20:43:55 -0400 Received: from localhost ([127.0.0.1]:47882) by fencepost.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R16BN-0003t2-MR; Tue, 06 Sep 2011 20:40:01 -0400 From: Glenn Morris To: Eduard Wiebe Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode References: <87aaaqpufk.fsf@pusto.de> <96bov28nrf.fsf@fencepost.gnu.org> <87zkilfrrg.fsf@pusto.de> X-Spook: Juiliett Class Submarine Centro kibo MD5 Steve Case X-Ran: -t1+#GXj]+:omCQutczs>_La(m1'Ag$PI}$B.9Mdgt1vED>A),2NPybR3CBty0/~oDYAZ) X-Hue: red X-Debbugs-No-Ack: yes X-Attribution: GM Date: Tue, 06 Sep 2011 20:40:01 -0400 Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.4 (------) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.4 (------) Eduard Wiebe wrote: > Can you apply this patch to the trunk. I'm not sure if the change is appropriate, for all users of that macro. (I don't have much of an opinion about it.) From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 07 08:43:25 2011 Received: (at 9409) by debbugs.gnu.org; 7 Sep 2011 12:43:25 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R1HTR-0007Fs-6u for submit@debbugs.gnu.org; Wed, 07 Sep 2011 08:43:25 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.183] helo=ironport2-out.pppoe.ca) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R1HTN-0007Fj-6w for 9409@debbugs.gnu.org; Wed, 07 Sep 2011 08:43:22 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAMNlZ064rwMJ/2dsb2JhbABDp2l5gUYBAQQBViMQCw4mEhQYDSSICLdwhmsEoCOEQA X-IronPort-AV: E=Sophos;i="4.68,345,1312171200"; d="scan'208";a="134935890" Received: from 184-175-3-9.dsl.teksavvy.com (HELO ceviche.home) ([184.175.3.9]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 07 Sep 2011 08:39:27 -0400 Received: by ceviche.home (Postfix, from userid 20848) id 65A7166246; Wed, 7 Sep 2011 08:39:27 -0400 (EDT) From: Stefan Monnier To: Glenn Morris Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode Message-ID: References: <87aaaqpufk.fsf@pusto.de> <96bov28nrf.fsf@fencepost.gnu.org> <87zkilfrrg.fsf@pusto.de> Date: Wed, 07 Sep 2011 08:39:27 -0400 In-Reply-To: (Glenn Morris's message of "Tue, 06 Sep 2011 20:40:01 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.1 (--) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org, Eduard Wiebe X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.1 (--) >> Can you apply this patch to the trunk. > I'm not sure if the change is appropriate, for all users of that macro. > (I don't have much of an opinion about it.) I think the change is a good one. So if someone could check the various uses of that macro to make sure it doesn't break anything, we can install it. Stefan From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 13 15:46:08 2011 Received: (at 9409) by debbugs.gnu.org; 13 Sep 2011 19:46:08 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R3Yvn-0001f5-6o for submit@debbugs.gnu.org; Tue, 13 Sep 2011 15:46:07 -0400 Received: from wp093.webpack.hosteurope.de ([80.237.132.100]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R3Yvk-0001ew-IB for 9409@debbugs.gnu.org; Tue, 13 Sep 2011 15:46:05 -0400 Received: from f055098070.adsl.alicedsl.de ([78.55.98.70] helo=nirvana); authenticated by wp093.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) id 1R3YrO-0000Ho-41; Tue, 13 Sep 2011 21:41:34 +0200 Received: from ew by nirvana with local (Exim 4.72) (envelope-from ) id 1R3Yoa-0001ej-ST; Tue, 13 Sep 2011 21:38:40 +0200 From: Eduard Wiebe To: Stefan Monnier Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode References: <87aaaqpufk.fsf@pusto.de> <96bov28nrf.fsf@fencepost.gnu.org> <87zkilfrrg.fsf@pusto.de> Date: Tue, 13 Sep 2011 21:38:40 +0200 In-Reply-To: (Stefan Monnier's message of "Wed, 07 Sep 2011 08:39:27 -0400") Message-ID: <87k49cs05b.fsf@pusto.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-bounce-key: webpack.hosteurope.de;ew@pusto.de;1315942896;aa6e41e4; X-Spam-Score: -4.4 (----) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org, Glenn Morris X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -4.4 (----) Stefan Monnier writes: >>> Can you apply this patch to the trunk. >> I'm not sure if the change is appropriate, for all users of that macro. >> (I don't have much of an opinion about it.) > > I think the change is a good one. 1+ > So if someone could check the various uses of that macro to make sure > it doesn't break anything, we can install it. I found following uses of the macro: 1889060 84 -rw-r--r-- 1 ew ew 80974 Sep 9 20:59 vc/diff-mode.el 1892302 24 -rw-r--r-- 1 ew ew 21559 Aug 27 17:25 vc/log-view.el 1892363 56 -rw-r--r-- 1 ew ew 51035 Aug 27 17:25 vc/smerge-mode.el 1889741 20 -rw-r--r-- 1 ew ew 17799 Aug 27 17:25 vc/cvs-status.el I patched `easy-mmode-define-navigation' as above and tested (marked as X) the most functions without any trouble. * diff-mode.el - [X] diff-hunk-prev - [X] diff-hunk-next - [X] diff-file-prev - [X] diff-file-next * log-view.el - [X] log-view-msg-prev - [X] log-view-msg-next - [ ] log-view-file-prev - [ ] log-view-file-next * smerge-mode - [ ] smerge-next - [ ] smerge-prev * cvs-status - [X] cvs-status-next - [X] cvs-status-prev -- Eduard Wiebe From debbugs-submit-bounces@debbugs.gnu.org Tue Sep 13 17:15:52 2011 Received: (at 9409) by debbugs.gnu.org; 13 Sep 2011 21:15:52 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R3aKd-0008TE-PH for submit@debbugs.gnu.org; Tue, 13 Sep 2011 17:15:51 -0400 Received: from pruche.dit.umontreal.ca ([132.204.246.22]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R3aKc-0007Zc-4Y for 9409@debbugs.gnu.org; Tue, 13 Sep 2011 17:15:50 -0400 Received: from faina.iro.umontreal.ca (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id p8DL2a6r005330; Tue, 13 Sep 2011 17:02:36 -0400 Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id BD17C13007E; Tue, 13 Sep 2011 17:02:09 -0400 (EDT) From: Stefan Monnier To: Eduard Wiebe Subject: Re: bug#9409: 24.0.50; log-view-msg-prev, easy-mmode Message-ID: References: <87aaaqpufk.fsf@pusto.de> <96bov28nrf.fsf@fencepost.gnu.org> <87zkilfrrg.fsf@pusto.de> <87k49cs05b.fsf@pusto.de> Date: Tue, 13 Sep 2011 17:02:09 -0400 In-Reply-To: <87k49cs05b.fsf@pusto.de> (Eduard Wiebe's message of "Tue, 13 Sep 2011 21:38:40 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV3979=0 X-NAI-Spam-Version: 2.2.0.9286 : core <3979> : streams <681298> : uri <958703> X-Spam-Score: -2.0 (--) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org, Glenn Morris X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.0 (--) > I patched `easy-mmode-define-navigation' as above and tested (marked > as X) the most functions without any trouble. > * diff-mode.el > - [X] diff-hunk-prev > - [X] diff-hunk-next > - [X] diff-file-prev > - [X] diff-file-next > * log-view.el > - [X] log-view-msg-prev > - [X] log-view-msg-next > - [ ] log-view-file-prev > - [ ] log-view-file-next > * smerge-mode > - [ ] smerge-next > - [ ] smerge-prev > * cvs-status > - [X] cvs-status-next > - [X] cvs-status-prev If a problem shows up it's not going to be in the *-prev commands, but in commands that call those functions internally. So you need to check the callers of diff-hunk-prev, diff-file-prev, etc.. It's always good to check with actual testing, but it's also important to check by looking at the code. IIUC this will be safe because in the case where the behavior is changed, the function signals an error, so only callers which catch this error (with condition-case) might be affected. Stefan From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 03 21:14:28 2013 Received: (at control) by debbugs.gnu.org; 4 Jun 2013 01:14:28 +0000 Received: from localhost ([127.0.0.1]:49597 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UjfpS-0000pR-67 for submit@debbugs.gnu.org; Mon, 03 Jun 2013 21:14:28 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:55263 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1UjfpQ-0000pG-CD for control@debbugs.gnu.org; Mon, 03 Jun 2013 21:14:24 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1UjfnZ-0006ix-7V for control@debbugs.gnu.org; Mon, 03 Jun 2013 21:12:29 -0400 Date: Mon, 03 Jun 2013 21:12:29 -0400 Message-Id: Subject: control message for bug 14531 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -4.7 (----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.0 (------) merge 9409 14531 From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 25 07:01:56 2020 Received: (at 9409) by debbugs.gnu.org; 25 Sep 2020 11:01:56 +0000 Received: from localhost ([127.0.0.1]:42821 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kLlUC-0000J1-9E for submit@debbugs.gnu.org; Fri, 25 Sep 2020 07:01:56 -0400 Received: from quimby.gnus.org ([95.216.78.240]:38706) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kLlUA-0000DK-6d; Fri, 25 Sep 2020 07:01:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=yPoS/mbvqA0gCYdkvJ9UMk6ihmU2txNaO6gTeKnoq5E=; b=FcRi2fxGv7cA3BUj5CnFja7a4/ oBuAc4AvAumFsIP3mVX7ix51ca6ghoAu5ucnW1BvPDrFAVoBX79z6SxOgeG2AyOp5/WitXUU4Bvni BD9RwiMuwbltSwENSoi6q8ZoEuIRArIWBB9KNmBPFDVp1vECrMypMBjzn0KjgE3iSpWw=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1kLlU1-0001Rw-0Z; Fri, 25 Sep 2020 13:01:47 +0200 From: Lars Ingebrigtsen To: Xue Fuqiao Subject: Re: bug#14531: 24.3.50; `log-view-file-prev' doesn't move to the beginning of the log buffer References: X-Now-Playing: Thievery Corporation's _The Mirror Conspiracy_: "The Mirror Conspiracy" Date: Fri, 25 Sep 2020 13:01:43 +0200 In-Reply-To: (Xue Fuqiao's message of "Sun, 2 Jun 2013 10:53:34 +0800") Message-ID: <87pn6aqfvs.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Xue Fuqiao writes: > In (info "(emacs) VC Change Log"): > `P' > Move to the log of the previous file, if showing logs for a > multi-file VC fileset. Otherwise, just move to the beginning of > the log. A numeric prefix a [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org, 14531@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Xue Fuqiao writes: > In (info "(emacs) VC Change Log"): > `P' > Move to the log of the previous file, if showing logs for a > multi-file VC fileset. Otherwise, just move to the beginning of > the log. A numeric prefix argument is a repeat count. > > I tried visiting a random Emacs Lisp file (calc.el) in the bzr repo, and > then execute `vc-print-log'. It isn't a multi-file fileset, but > pressing `P' does not move to the beginning of the log buffer. Instead, > an error message "No previous file" occurs. I'm not sure what that command is meant to do, even after reading the documentation and reading the code (and even reading the code doesn't help that much, because these are easy-mmode-define-navigation incantation). It searches for the prev instance of: log-view-file-re "^\\(?:Working file: \\(?1:.+\\)\\|\\(?:SCCS/s\\.\\|Changes to \\)\\(?1:.+\\):\\) " in the *vc-change-log* buffer? But ... there's nothing like that in a git buffer? So `P'/`N' always fails for me. Is this just code that has bitrotted, or is the use case just not... explained well? This bug was merged with: Eduard Wiebe writes: > it bothers me that in some situation i cannot reach the head information > of the `vc-print-log' via `log-view-msg-prev'. > > I fixed the issue by following simple patch. [...] > - (error "No previous %s" ,name))) > + (goto-char (point-min)) > + (error "No previous %s" ,name))) I don't understand what's meant by "the head information", but the `n'/`p' commands in *vc-change-log* buffers seems to work well for me? Test case: C-x C-f calc.el C-x v l n p p So these seem to be different bugs and the second bug has been fixed in the intervening years? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu May 05 08:28:20 2022 Received: (at 9409) by debbugs.gnu.org; 5 May 2022 12:28:20 +0000 Received: from localhost ([127.0.0.1]:44660 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmaah-0006kt-Q1 for submit@debbugs.gnu.org; Thu, 05 May 2022 08:28:20 -0400 Received: from quimby.gnus.org ([95.216.78.240]:53124) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmaaf-0006kX-Jg; Thu, 05 May 2022 08:28:18 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=13wznkttZSEbGEQi+WF1sOJwRvr7zt1H+yBfwWUEcSs=; b=X0huc2q0kMdCp9A5hVDvRwwven csaWp5glJR/ZSNmmKv0LFjzz79eC1GETR99kILkx0e4rZ35I7kyp5OXxjkkgIseZ6W8X//Vkswp6i ffymQpuPxuf/2DxkZOH58cy4rPw4Bl5qOHMYFET4SEogf1FBgPjCWJxfRmg6I9untYhA=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nmaaO-0001hm-Th; Thu, 05 May 2022 14:28:07 +0200 From: Lars Ingebrigtsen To: Xue Fuqiao Subject: Re: bug#14531: 24.3.50; `log-view-file-prev' doesn't move to the beginning of the log buffer References: <87pn6aqfvs.fsf@gnus.org> X-Now-Playing: Oneohtrix Point Never's _Magic Oneohtrix Point Never_: "Lost But Never Alone" Date: Thu, 05 May 2022 14:28:00 +0200 In-Reply-To: <87pn6aqfvs.fsf@gnus.org> (Lars Ingebrigtsen's message of "Fri, 25 Sep 2020 13:01:43 +0200") Message-ID: <87mtfwqi3z.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Lars Ingebrigtsen writes: >> In (info "(emacs) VC Change Log"): >> `P' >> Move to the log of the previous file, if showing logs for a >> multi-file VC fileset. Otherwise, just move to the beginning of >> the log. A numeric pre [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 9409 Cc: 9409@debbugs.gnu.org, Dmitry Gutov , Stefan Monnier , 14531@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Lars Ingebrigtsen writes: >> In (info "(emacs) VC Change Log"): >> `P' >> Move to the log of the previous file, if showing logs for a >> multi-file VC fileset. Otherwise, just move to the beginning of >> the log. A numeric prefix argument is a repeat count. >> >> I tried visiting a random Emacs Lisp file (calc.el) in the bzr repo, and >> then execute `vc-print-log'. It isn't a multi-file fileset, but >> pressing `P' does not move to the beginning of the log buffer. Instead, >> an error message "No previous file" occurs. > > I'm not sure what that command is meant to do, even after reading the > documentation and reading the code (and even reading the code doesn't > help that much, because these are easy-mmode-define-navigation > incantation). > > It searches for the prev instance of: > > log-view-file-re > "^\\(?:Working file: \\(?1:.+\\)\\|\\(?:SCCS/s\\.\\|Changes to > \\)\\(?1:.+\\):\\) > " > > in the *vc-change-log* buffer? But ... there's nothing like that in a > git buffer? > > So `P'/`N' always fails for me. Is this just code that has bitrotted, > or is the use case just not... explained well? Perhaps these commands are CVS/RCS/SCCS-specific, and shouldn't be enabled in general? Because they're pretty confusing as is, and should (at the very least) explain better what they're attempting to do. I've added Stefan and Dmitry to the CCs; perhaps they have some insights here. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu May 05 08:28:21 2022 Received: (at control) by debbugs.gnu.org; 5 May 2022 12:28:21 +0000 Received: from localhost ([127.0.0.1]:44663 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmaaj-0006lB-4c for submit@debbugs.gnu.org; Thu, 05 May 2022 08:28:21 -0400 Received: from quimby.gnus.org ([95.216.78.240]:53138) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmaai-0006kb-6s for control@debbugs.gnu.org; Thu, 05 May 2022 08:28:20 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=/EXiifwtM3YEl4AV7OBBmTYPzTY1RD+dAMW6rWmaUnA=; b=UVjUeZqDUVjo6m5z2v1VJ7B0Fu LTvxTv5SuvAdnhRh42F2uSU7zNs6eFZ21ySdACZSjzRXtyheWj1zFC+1Wof3U2NjirETfx2Lpx4pt F/k2jSn2NcPVYc/35sX+EGa8V8Jbxue07BjF7T/VEkrm/qKBDZDNM0B0rGW5yt2TxXHc=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nmaaa-0001i4-K5 for control@debbugs.gnu.org; Thu, 05 May 2022 14:28:14 +0200 Date: Thu, 05 May 2022 14:28:12 +0200 Message-Id: <87levgqi3n.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14531 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 14531 + moreinfo quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) tags 14531 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Thu May 05 15:58:47 2022 Received: (at 9409) by debbugs.gnu.org; 5 May 2022 19:58:48 +0000 Received: from localhost ([127.0.0.1]:46531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmhcd-0006Y5-Iq for submit@debbugs.gnu.org; Thu, 05 May 2022 15:58:47 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:15356) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmhca-0006Xn-QY; Thu, 05 May 2022 15:58:45 -0400 Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id E7A5C442763; Thu, 5 May 2022 15:58:38 -0400 (EDT) Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id AB058442761; Thu, 5 May 2022 15:58:37 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1651780717; bh=caIGkZKmnLaWdpDJ/4k4cf7GI4Lb3QgjHHc9pKfisSI=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=fDZPxFZ6jrV9cOEZZDzVXjV/EiOQTZLl8NtUOp3FFZGhBFP2/HxzZz6/zv7lCM/AV 3cMCbFeCJLbzL/GyLoMFl2J1ddeMxD23/BnL4C/WK3xtjojxVK1qzTQdRnjZrLbQr5 IrOUETgba7pC7QG05DvJekaWl8zwKDwsN/JS3VTlkjTFpc22JxnO34CNINnJL3SjAD 7dB8wZrTbTUGfFw1D6M8MOu44kHhQuj1iIL3gq1pFbt7Gu3zghSV9+fCjFoWgWUPPT zXE6GwYFb97/OFfKZWuhwadRblsLIec0h60wPHO1cgdB876/VR0M7UuzRIPROsLq+y HgN5Kj0++v5iQ== Received: from alfajor (lechon.iro.umontreal.ca [132.204.27.242]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 742A51206AC; Thu, 5 May 2022 15:58:37 -0400 (EDT) From: Stefan Monnier To: Lars Ingebrigtsen Subject: Re: bug#14531: 24.3.50; `log-view-file-prev' doesn't move to the beginning of the log buffer Message-ID: References: <87pn6aqfvs.fsf@gnus.org> <87mtfwqi3z.fsf@gnus.org> Date: Thu, 05 May 2022 15:58:34 -0400 In-Reply-To: <87mtfwqi3z.fsf@gnus.org> (Lars Ingebrigtsen's message of "Thu, 05 May 2022 14:28:00 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL 0.268 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain T_SCC_BODY_TEXT_LINE -0.01 - X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 9409 Cc: Xue Fuqiao , 9409@debbugs.gnu.org, Dmitry Gutov , 14531@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Lars Ingebrigtsen [2022-05-05 14:28:00] wrote: >>> In (info "(emacs) VC Change Log"): >>> `P' >>> Move to the log of the previous file, if showing logs for a >>> multi-file VC fileset. Otherwise, just move to the beginning of >>> the log. A numeric prefix argument is a repeat count. [...] > Perhaps these commands are CVS/RCS/SCCS-specific, Indeed, I think this command doesn't make much sense in current VCSs. It made sense for CVS where `cvs log ` would give the logs of every file in , one after the other. Stefan From debbugs-submit-bounces@debbugs.gnu.org Fri May 06 07:46:02 2022 Received: (at 9409) by debbugs.gnu.org; 6 May 2022 11:46:02 +0000 Received: from localhost ([127.0.0.1]:47297 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmwPJ-0002pn-G4 for submit@debbugs.gnu.org; Fri, 06 May 2022 07:46:02 -0400 Received: from quimby.gnus.org ([95.216.78.240]:36134) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmwPH-0002iX-H2; Fri, 06 May 2022 07:46:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=54Iz9YmyZoyS8QtnOt7lzh/KMgO60Ro59Dx4U75vviA=; b=OGp5TrQ7Ydsf0wrqHr1YQC0N60 yB+fDN1pS0k/lUeISJodIG/4XVKmVd4RxSnfNXj2F34QFyHpiRc6Q5hP8Zwnnkah1pZMhRz2KVS7s TPJg0d4ZS0l6EROgANKNhfxgtw6RZMkH+tE4IobW7Hlhi78S1s6hYAsaGBZLTQ5jpI+0=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nmwP7-00064a-Vv; Fri, 06 May 2022 13:45:52 +0200 From: Lars Ingebrigtsen To: Stefan Monnier Subject: Re: bug#14531: 24.3.50; `log-view-file-prev' doesn't move to the beginning of the log buffer References: <87pn6aqfvs.fsf@gnus.org> <87mtfwqi3z.fsf@gnus.org> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEUUDxFUT0qgk2/S yqj///8BJ5pvAAAAAWJLR0QEj2jZUQAAAAd0SU1FB+YFBgstDbOMSyAAAAFsSURBVDjLfZMBksMg CEUhvQDQC0S8QIL3v9uCUaNJZ2mnM/UFPnwJwBKSCH5G1t8Aiy0AuT34KYWWcyknswKUFYDkEnFs /rP2Us+LObdFooFiT6A3cA2eQC5TaBpEdQH3kNucYlMG6p2jmm4RSFxBtKu691OO2VmUNedISHPH FMxd0azM9f/smKdZ1rgRfJovZmLcz9E//Z7MxTnqVkDUEEZjDlBSU27xrQMKsS6dVcv8m7z1PktV k2qMZZ92WQnmZljyJ5i6RMze3Eqati1qEVJMLcNhL3QBhjjX+aZyLYW+PzxdSYA2Bk6FvC/CvhPY Eyw6MMBzLJDG3XlFd6Wc8O0DeoIxNbvKjmMfRceWB/iMSpcH1ZjYubw/3oJayrK0lZ/PHZzeYFee Fmkrh2RrCbPHn3KgWl+rKb5lBznhFZhdGPUN4B8QY3XVST3eNczU1AmIxhiPjAGOAPtLYvNuHaQX uGySH8AuMwD+AAaBR8irJ80RAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIyLTA1LTA2VDExOjQ1OjEz KzAwOjAwpPzRGgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMi0wNS0wNlQxMTo0NToxMyswMDowMNWh aaYAAAAASUVORK5CYII= X-Now-Playing: The Cure's _The Head On The Door_: "In Between Days" Date: Fri, 06 May 2022 13:45:49 +0200 In-Reply-To: (Stefan Monnier's message of "Thu, 05 May 2022 15:58:34 -0400") Message-ID: <87o80anatu.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Stefan Monnier writes: > Indeed, I think this command doesn't make much sense in current VCSs. > It made sense for CVS where `cvs log ` would give the logs of every > file in , one after the other. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 9409 Cc: Xue Fuqiao , 9409@debbugs.gnu.org, Dmitry Gutov , 14531@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Stefan Monnier writes: > Indeed, I think this command doesn't make much sense in current VCSs. > It made sense for CVS where `cvs log ` would give the logs of every > file in , one after the other. Right. So I've now made new tiny derived log-view modes for these VCs, and removed the bindings in the general log-view map in Emacs 29. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri May 06 07:46:08 2022 Received: (at control) by debbugs.gnu.org; 6 May 2022 11:46:08 +0000 Received: from localhost ([127.0.0.1]:47303 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmwPQ-0002vT-1M for submit@debbugs.gnu.org; Fri, 06 May 2022 07:46:08 -0400 Received: from quimby.gnus.org ([95.216.78.240]:36150) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nmwPO-0002pK-1B for control@debbugs.gnu.org; Fri, 06 May 2022 07:46:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=SyFhD+X/sAKxAN2UWWey9r5plk+a2gJGQKymk+KKh/4=; b=T9s7mrijZQVkQHb+QRUq4eCdep D7wiIHdmyTJvHS3/iO8JofBe3nFuPuSrk4E8ZtbXvBZCV2KOe/XGE3WXsRutKuKcETmoomy9M99iJ tffypvGXOUCxVC1I3foNEJrVYmRwXmDSkJl2YWqRsWelp3TBvhTRKQ3Nc0ZFgiszr95Q=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nmwPG-00064o-Bz for control@debbugs.gnu.org; Fri, 06 May 2022 13:46:00 +0200 Date: Fri, 06 May 2022 13:45:57 +0200 Message-Id: <87mtfunatm.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14531 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 14531 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) close 14531 29.1 quit From unknown Tue Jun 17 20:19:28 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 04 Jun 2022 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator