From unknown Sat Aug 16 18:19:59 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#50137 <50137@debbugs.gnu.org> To: bug#50137 <50137@debbugs.gnu.org> Subject: Status: Mark page navigation commands as repeatable Reply-To: bug#50137 <50137@debbugs.gnu.org> Date: Sun, 17 Aug 2025 01:19:59 +0000 retitle 50137 Mark page navigation commands as repeatable reassign 50137 emacs submitter 50137 Davide Masserut severity 50137 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 10:55:08 2021 Received: (at submit) by debbugs.gnu.org; 20 Aug 2021 14:55:08 +0000 Received: from localhost ([127.0.0.1]:35310 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH5vH-0006P9-Hx for submit@debbugs.gnu.org; Fri, 20 Aug 2021 10:55:08 -0400 Received: from lists.gnu.org ([209.51.188.17]:43028) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH5QZ-0001GP-OO for submit@debbugs.gnu.org; Fri, 20 Aug 2021 10:23:24 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37370) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mH5QX-0001f4-6t for bug-gnu-emacs@gnu.org; Fri, 20 Aug 2021 10:23:22 -0400 Received: from out2.migadu.com ([2001:41d0:2:aacc::]:40945) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mH5QT-00073o-DZ for bug-gnu-emacs@gnu.org; Fri, 20 Aug 2021 10:23:20 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mssdvd.com; s=key1; t=1629469386; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=3zQE/AFjJUnpU/L7Wm2mcFkFLqWjozl9lngMybmAikI=; b=TTySo874+g/T0dBhQ+5m+t6OCBeH63O2SqeZPAPvxKrSZZuRm/NHTcPPW7z4x9WfZNPQ+j fvIGEai2sErgMopIFe/rUNhxm2VlIUJ4+d8xEr9g8jFqxd+ZwHvBDRbjjPMiJq2dzPtJS7 jBa9HwgnuAkJ5e6wfR4nFnxb3kwvXFEQ7VGyv8yYoN7oPdZmJjHvWP2/ZQ++aBEc4NLSP3 g3VjdA31pXyB10CByiJb3HBDDLpYyTGWILlfr5/vh41Q4szrzcrEL1AnJgrwGuu0uhLwJE 9maGYCfdYr6vX2i6r/ZuhsZrW7+tZ2qVC4hu4lLuA6hfKQi57I6cLP6tVQayAA== From: Davide Masserut To: bug-gnu-emacs@gnu.org Subject: Mark page navigation commands as repeatable Date: Fri, 20 Aug 2021 16:23:05 +0200 Message-ID: <87o89sjiuu.fsf@mssdvd.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: dm@mssdvd.com Received-SPF: pass client-ip=2001:41d0:2:aacc::; envelope-from=dm@mssdvd.com; helo=out2.migadu.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 20 Aug 2021 10:55:06 -0400 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: -2.4 (--) --=-=-= Content-Type: text/plain Hi, I made a patch that allows to navigate through pages using repeat-mode. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Mark-page-navigation-commands-as-repeatable.patch >From 061dded6ea68a641cc172f37d721556044c2ff6b Mon Sep 17 00:00:00 2001 From: Davide Masserut Date: Fri, 20 Aug 2021 15:29:13 +0200 Subject: [PATCH] Mark page navigation commands as repeatable * doc/emacs/basic.texi (Repeating): Document page navigation repeatability * lisp/bindings.el (page-navigation-repeat-map): Add new map --- doc/emacs/basic.texi | 17 +++++++++-------- lisp/bindings.el | 11 +++++++++++ 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/doc/emacs/basic.texi b/doc/emacs/basic.texi index ba8d822b18..88e2777515 100644 --- a/doc/emacs/basic.texi +++ b/doc/emacs/basic.texi @@ -887,15 +887,16 @@ Repeating subsequent @kbd{z} repeats it once again. @findex repeat-mode - Also you can activate @code{repeat-mode} that temporarily enables -a transient mode with short keys after a limited number of commands. + Also you can activate @code{repeat-mode} that temporarily enables a +transient mode with short keys after a limited number of commands. Currently supported shorter key sequences are @kbd{C-x u u} instead of @kbd{C-x u C-x u} to undo many changes, @kbd{C-x o o} instead of @kbd{C-x o C-x o} to switch several windows, @kbd{C-x @{ @{ @} @} ^ ^ v v} to resize the selected window interactively, @kbd{M-g n n p p} to -navigate @code{next-error} matches. Any other key exits transient mode -and then is executed normally. The user option @code{repeat-exit-key} -defines an additional key to exit this transient mode. Also it's -possible to break the repetition chain automatically after idle time -by customizing the user option @code{repeat-exit-timeout} to a number -of seconds. +navigate @code{next-error} matches, @kbd{C-x ] ] [ [} to navigate +through pages. Any other key exits transient mode and then is +executed normally. The user option @code{repeat-exit-key} defines an +additional key to exit this transient mode. Also it's possible to +break the repetition chain automatically after idle time by +customizing the user option @code{repeat-exit-timeout} to a number of +seconds. diff --git a/lisp/bindings.el b/lisp/bindings.el index 0345944894..b67c6ad638 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -1434,6 +1434,17 @@ ctl-x-map (define-key ctl-x-map "[" 'backward-page) (define-key ctl-x-map "]" 'forward-page) + +(defvar page-navigation-repeat-map + (let ((map (make-sparse-keymap))) + (define-key map (kbd "]") #'forward-page) + (define-key map (kbd "[") #'backward-page) + map) + "Keymap to repeat page navigation key sequences. Used in `repeat-mode'.") + +(put 'forward-page 'repeat-map 'page-navigation-repeat-map) +(put 'backward-page 'repeat-map 'page-navigation-repeat-map) + (define-key ctl-x-map "\C-p" 'mark-page) (define-key ctl-x-map "l" 'count-lines-page) (define-key ctl-x-map "np" 'narrow-to-page) -- 2.33.0 --=-=-= Content-Type: text/plain -- Davide Masserut --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 11:50:25 2021 Received: (at 50137) by debbugs.gnu.org; 20 Aug 2021 15:50:25 +0000 Received: from localhost ([127.0.0.1]:35397 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH6mi-0005ri-Uf for submit@debbugs.gnu.org; Fri, 20 Aug 2021 11:50:25 -0400 Received: from quimby.gnus.org ([95.216.78.240]:33208) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH6md-0005rM-Gt for 50137@debbugs.gnu.org; Fri, 20 Aug 2021 11:50:20 -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=JsEUpvuyHAgaOO0I6JGVNWGmAFuPNiXlxxys8LOhJ54=; b=th2ZJginWqfYtiqY1zpxCodLEj V/89cSqLaI6ksWXNs6nSeiqRiHHewCiZh2tnA9x5tFgk/Ar/W8e7VMhcZk4NlAnt8D9U7MXeV/21g WAdFwQtm24A1HW+0dWT0M0yu2idEY0uv/ax03Vr2cXcOcK4hbctgiAIPXHPBoXZRdmEM=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mH6mS-0005gI-19; Fri, 20 Aug 2021 17:50:08 +0200 From: Lars Ingebrigtsen To: Davide Masserut Subject: Re: bug#50137: Mark page navigation commands as repeatable References: <87o89sjiuu.fsf@mssdvd.com> Date: Fri, 20 Aug 2021 17:50:03 +0200 In-Reply-To: <87o89sjiuu.fsf@mssdvd.com> (Davide Masserut's message of "Fri, 20 Aug 2021 16:23:05 +0200") Message-ID: <87zgtc3yl0.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: Davide Masserut writes: > Hi, I made a patch that allows to navigate through pages using > repeat-mode. Thanks; looks good to me, so I've pushed it to Emacs 28. 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: 50137 Cc: 50137@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 (---) Davide Masserut writes: > Hi, I made a patch that allows to navigate through pages using > repeat-mode. Thanks; looks good to me, so I've pushed it to Emacs 28. This change was small enough to apply without assigning copyright to the FSF, but for future patches you want to submit, it might make sense to get the paperwork started now, so that subsequent patches can be applied speedily. Would you be willing to sign such paperwork? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 11:50:29 2021 Received: (at control) by debbugs.gnu.org; 20 Aug 2021 15:50:29 +0000 Received: from localhost ([127.0.0.1]:35399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH6mn-0005rt-Du for submit@debbugs.gnu.org; Fri, 20 Aug 2021 11:50:29 -0400 Received: from quimby.gnus.org ([95.216.78.240]:33222) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH6mh-0005rV-0C for control@debbugs.gnu.org; Fri, 20 Aug 2021 11:50:22 -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=gB7pbPT5s5iM/TwGjFUwxHbaN/ngctfonRrxNEBJS54=; b=cgHOCvFG8fa3810yBDH0bq3uTQ k46ECQGj7K+YOY5GmqfAxnr3udiVMwNX3V6q5dHw2bsn9SdvHtvdRWIwicZKLL/PfqdyY1Z7Uqlj1 4UbdVPzFlBaxFIg2wqBfynV+5F7eCi9SOhHT6/QMLsF4FJS4h1xyMSkLo2qrupFoE9xo=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mH6mZ-0005gU-1h for control@debbugs.gnu.org; Fri, 20 Aug 2021 17:50:13 +0200 Date: Fri, 20 Aug 2021 17:50:10 +0200 Message-Id: <87y28w3ykt.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #50137 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 50137 28.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 50137 28.1 quit From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 12:10:09 2021 Received: (at 50137) by debbugs.gnu.org; 20 Aug 2021 16:10:09 +0000 Received: from localhost ([127.0.0.1]:35415 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH75t-00005b-CY for submit@debbugs.gnu.org; Fri, 20 Aug 2021 12:10:09 -0400 Received: from quimby.gnus.org ([95.216.78.240]:33426) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH75q-00004u-QK for 50137@debbugs.gnu.org; Fri, 20 Aug 2021 12:10:07 -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=OrwUMq1ANsU2M0r/ZeBwARV0Y/9jIeSAYxYafOU7PCI=; b=jDN/ZtE+Zll45h7kqRyMNpXwB5 KKY0Dfb0XeL0dhxj0iHyGeFunTIx41kkFbC3b0eYxglIZI9vsI0EJPwkD5br9NBI5K+VaAsPFtfO7 K5HIkoOmvKvh5WiWX4SM08ZHi9XbmTELLwjCTLoiCX7648+KDNSkpFrE80dkRHUCJzAo=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mH75g-0005uk-44; Fri, 20 Aug 2021 18:10:00 +0200 From: Lars Ingebrigtsen To: Davide Masserut Subject: Re: bug#50137: Mark page navigation commands as repeatable References: <87o89sjiuu.fsf@mssdvd.com> <87zgtc3yl0.fsf@gnus.org> <87mtpchzhb.fsf@mssdvd.com> Date: Fri, 20 Aug 2021 18:09:55 +0200 In-Reply-To: <87mtpchzhb.fsf@mssdvd.com> (Davide Masserut's message of "Fri, 20 Aug 2021 18:06:56 +0200") Message-ID: <87tujk3xnw.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: Davide Masserut writes: >> This change was small enough to apply without assigning copyright to the >> FSF, but for future patches you want to submit, it might make sense to >> get the paperwork started now, so that subseque [...] 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: 50137 Cc: 50137@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 (---) Davide Masserut writes: >> This change was small enough to apply without assigning copyright to the >> FSF, but for future patches you want to submit, it might make sense to >> get the paperwork started now, so that subsequent patches can be applied >> speedily. Would you be willing to sign such paperwork? > > Sure! Great! Here's the form to get started: Please email the following information to assign@gnu.org, and we will send you the assignment form for your past and future changes. Please use your full legal name (in ASCII characters) as the subject line of the message. ---------------------------------------------------------------------- REQUEST: SEND FORM FOR PAST AND FUTURE CHANGES [What is the name of the program or package you're contributing to?] Emacs [Did you copy any files or text written by someone else in these changes? Even if that material is free software, we need to know about it.] [Do you have an employer who might have a basis to claim to own your changes? Do you attend a school which might make such a claim?] [For the copyright registration, what country are you a citizen of?] [What year were you born?] [Please write your email address here.] [Please write your postal address here.] [Which files have you changed so far, and which new files have you written so far?] From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 12:11:53 2021 Received: (at 50137) by debbugs.gnu.org; 20 Aug 2021 16:11:53 +0000 Received: from localhost ([127.0.0.1]:35418 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH77Y-00008B-PQ for submit@debbugs.gnu.org; Fri, 20 Aug 2021 12:11:53 -0400 Received: from out1.migadu.com ([91.121.223.63]:37166) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH72r-0008R7-Mh for 50137@debbugs.gnu.org; Fri, 20 Aug 2021 12:07:04 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mssdvd.com; s=key1; t=1629475619; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=QeD7uq0OL1iTeSAWQl4daEPSeX8QGGaGLxxcefEAVC8=; b=qZ3Qebt10GbAw+m8Rvqhv8b13t34/x4TO3j42XAJ9WtQUHktIfONkmz7VK50Xf6la6Mq2t 7HUhWQJwpHTctMM+AfUd1S2POAzIgr4PKzCaKTcaZfZVbK2iQ3PSDYvvuKBEhwPqDG5kBA xmQKCPJ08Y++IewqZu1ES8mgjuaB7a00Xjdiqr4uEIy2e50IogtRlj3y/vSZUmDr1fKyuN rsp06MJQYaHUC4ptCPmWBWw2HGccUkuCdUMjnlycmlrLTDrEi4MEDSiIaJKydNWQos9xBF JiB778bEzKblKyRf5/2rBReQlhC9MEx8Vx4x5VVjHdSmz8xOaQlOj19V2BqVpg== From: Davide Masserut To: Lars Ingebrigtsen Subject: Re: bug#50137: Mark page navigation commands as repeatable In-Reply-To: <87zgtc3yl0.fsf@gnus.org> References: <87o89sjiuu.fsf@mssdvd.com> <87zgtc3yl0.fsf@gnus.org> Date: Fri, 20 Aug 2021 18:06:56 +0200 Message-ID: <87mtpchzhb.fsf@mssdvd.com> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: dm@mssdvd.com X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 50137 X-Mailman-Approved-At: Fri, 20 Aug 2021 12:11:52 -0400 Cc: 50137@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.7 (-) Lars Ingebrigtsen writes: > Thanks; looks good to me, so I've pushed it to Emacs 28. Great! > This change was small enough to apply without assigning copyright to the > FSF, but for future patches you want to submit, it might make sense to > get the paperwork started now, so that subsequent patches can be applied > speedily. Would you be willing to sign such paperwork? Sure! -- Davide Masserut From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 20 12:15:40 2021 Received: (at 50137) by debbugs.gnu.org; 20 Aug 2021 16:15:40 +0000 Received: from localhost ([127.0.0.1]:35427 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH7BE-0000EX-Lz for submit@debbugs.gnu.org; Fri, 20 Aug 2021 12:15:40 -0400 Received: from out2.migadu.com ([188.165.223.204]:36709) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mH7BD-0000EQ-TW for 50137@debbugs.gnu.org; Fri, 20 Aug 2021 12:15:40 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mssdvd.com; s=key1; t=1629476138; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=b7d7L1oM05zA/snSapb+IfUDpIHHngHFyewmIGPJ4HQ=; b=13sjYD3jORjUY0uCHgXL74ssH134lTsKOINBVZ1vYw5EGE0wpmGTsjbx4wIG53E6EoNK8S vENxScaoSmRmh+w+eTFMGqcq634H6W1m9psmIYxndzOd6rXjXOC+4ovkVNMOUiZB7eovlc oFll/MYlaoDUiLpoyNrljTAq0Ej22t8sTBOTh7SMawBzqN3koqcviyEW1Ea2zkmAh0v+BC 75s5OArjqS0tErLHiKBvtI/QEKRDxsqJo3uB9ORhuEsFpW4cHx+MoEUb2y/ek56mnvD6Y6 Y8EB+UeU4qVIiKDf4M0/gyiO/M8ftWRZpPTcbOsbjTVzV7E2cCuKHbuhMxkUIA== From: Davide Masserut To: Lars Ingebrigtsen Subject: Re: bug#50137: Mark page navigation commands as repeatable In-Reply-To: <87tujk3xnw.fsf@gnus.org> References: <87o89sjiuu.fsf@mssdvd.com> <87zgtc3yl0.fsf@gnus.org> <87mtpchzhb.fsf@mssdvd.com> <87tujk3xnw.fsf@gnus.org> Date: Fri, 20 Aug 2021 18:15:37 +0200 Message-ID: <87k0kghz2u.fsf@mssdvd.com> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: dm@mssdvd.com X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 50137 Cc: 50137@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 (-) Thanks! -- Davide Masserut From unknown Sat Aug 16 18:19:59 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, 18 Sep 2021 11:24:06 +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