From unknown Mon Sep 08 15:57:34 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#4382 <4382@debbugs.gnu.org> To: bug#4382 <4382@debbugs.gnu.org> Subject: Status: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N Reply-To: bug#4382 <4382@debbugs.gnu.org> Date: Mon, 08 Sep 2025 22:57:34 +0000 retitle 4382 [PATCH] lisp/rect.el: (rectangle-number-lines): New user key b= inding C-x r N reassign 4382 emacs submitter 4382 Jari Aalto severity 4382 wishlist tag 4382 patch thanks From jari.aalto@cante.net Wed Sep 9 03:05:04 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 9 Sep 2009 10:05:04 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-0.2 required=4.0 tests=AWL,FOURLA,FVGT_m_MULTI_ODD, IMPRONONCABLE_2,MURPHY_DRUGS_REL8 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh07.mail.saunalahti.fi (emh07.mail.saunalahti.fi [62.142.5.117]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n89A52ee023318 for ; Wed, 9 Sep 2009 03:05:03 -0700 Received: from saunalahti-vams (vs3-11.mail.saunalahti.fi [62.142.5.95]) by emh07-2.mail.saunalahti.fi (Postfix) with SMTP id 55E1B18D128; Wed, 9 Sep 2009 13:05:01 +0300 (EEST) Received: from emh07.mail.saunalahti.fi ([62.142.5.117]) by vs3-11.mail.saunalahti.fi ([62.142.5.95]) with SMTP (gateway) id A0301151A35; Wed, 09 Sep 2009 13:05:01 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh07.mail.saunalahti.fi (Postfix) with ESMTP id 7F6B91C6384; Wed, 9 Sep 2009 13:04:57 +0300 (EEST) From: Jari Aalto To: submit@debbugs.gnu.org Subject: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N CC: Scott Evans Date: Wed, 09 Sep 2009 13:04:57 +0300 Message-ID: <87pra0v3g6.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Antivirus: VAMS --=-=-= Scott has just informaed me that his FSF assignment papers have been processed and cleared. Based on his work at http://www.antisleep.com/elisp/gse-number-rect.el I propose following new feature to be added to the rect.el package. 2009-03-22 Jari Aalto * rect.el (rectangle-number-lines): New user function. (rectangle-number-line-callback): New function. (rectangle-number-line-format-history): New variable. (rectangle-number-line-counter): New variable. (define-key ctl-x-r-map "N" 'number-rectangle): New user key binding. The basis of the rectangle numbering code was lifted from gse-number-rect.el, orignally developed by Scott Evans . Used by permission (GPL). --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-lisp-rect.el-rectangle-number-lines-New-user-key-bin.patch >From 3ea550b85ded33fae27305bca8710e8f7ce0893b Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Sun, 22 Mar 2009 17:27:42 +0200 Subject: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N Signed-off-by: Jari Aalto --- lisp/rect.el | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/lisp/rect.el b/lisp/rect.el index eb188fc..6b63c81 100644 --- a/lisp/rect.el +++ b/lisp/rect.el @@ -39,6 +39,7 @@ ;;;###autoload (define-key ctl-x-r-map "y" 'yank-rectangle) ;;;###autoload (define-key ctl-x-r-map "o" 'open-rectangle) ;;;###autoload (define-key ctl-x-r-map "t" 'string-rectangle) +;;;###autoload (define-key ctl-x-r-map "N" 'number-rectangle) ;;; Code: @@ -395,6 +396,45 @@ rectangle which were empty." (delete-region pt (point)) (indent-to endcol))))) +(defvar rectangle-number-line-counter nil + "Variable holding line numbering information. +Initial value is set in function `rectangle-number-lines' +and incremented for each line in `rectangle-number-line-callback'.") + +(defvar rectangle-number-line-format-history nil + "History variable that records previous format strings.") + +(defun rectangle-number-line-callback (start end format-string) + (move-to-column start t) + (setq rectangle-number-line-counter (+ rectangle-number-line-counter 1)) + (insert (format format-string rectangle-number-line-counter))) + +(defun rectangle-number-lines (beg end start-at format &optional no-zero-padding) + "Insert numbers in front of lines in rectangle BEG END. + +START-AT specifices the first number to start at. +FORMAT is format string where %i denotes inserted number. + +If prefix arg NO-ZERO-PADDING is non-nil, do not padd numbers +with leading zeroes." + (interactive + (list + (region-beginning) + (region-end) + (if (functionp 'read-number) + (read-number "First number [1]: " 1) + (string-to-int (read-string "First number [1]: " nil nil "1"))) + (read-string "Format: " "%i " 'rectangle-number-line-format-history) + current-prefix-arg)) + (setq start-at (- start-at 1)) + (unless no-zero-padding + (let* ((max (+ (count-lines beg end) start-at)) + (longest (length (int-to-string (+ 1 max)))) + (fmt (concat "%0" (int-to-string longest) "i"))) + (setq format (replace-regexp-in-string "%i" fmt format)))) + (setq rectangle-number-line-counter start-at) + (apply-on-rectangle 'rectangle-number-line-callback beg end format)) + (provide 'rect) ;; arch-tag: 178847b3-1f50-4b03-83de-a6e911cc1d16 -- 1.6.3.3 --=-=-=-- From rms@gnu.org Thu Sep 10 07:59:45 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 10 Sep 2009 14:59:45 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.4 required=4.0 tests=AWL,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8 autolearn=unavailable version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8AExhYU016995; Thu, 10 Sep 2009 07:59:44 -0700 Received: from rms by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1Mll7Z-0002eL-Lj; Thu, 10 Sep 2009 10:59:37 -0400 Content-Type: text/plain; charset=ISO-8859-15 From: Richard Stallman To: Jari Aalto , 4382@debbugs.gnu.org CC: submit@debbugs.gnu.org, gse@antisleep.com In-reply-to: <87pra0v3g6.fsf@jondo.cante.net> (message from Jari Aalto on Wed, 09 Sep 2009 13:04:57 +0300) Subject: Re: bug#4382: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N Reply-to: rms@gnu.org References: <87pra0v3g6.fsf@jondo.cante.net> Message-Id: Date: Thu, 10 Sep 2009 10:59:37 -0400 X-CrossAssassin-Score: 2 What does this feature do? Where is the text to describe it? From jari.aalto@cante.net Thu Sep 10 09:59:33 2009 Received: (at 4382) by emacsbugs.donarmstrong.com; 10 Sep 2009 16:59:33 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.6 required=4.0 tests=AWL,FOURLA,FVGT_m_MULTI_ODD, HAS_BUG_NUMBER,IMPRONONCABLE_2,MURPHY_DRUGS_REL8 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh02.mail.saunalahti.fi (emh02.mail.saunalahti.fi [62.142.5.108]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8AGxVAh012379 for <4382@emacsbugs.donarmstrong.com>; Thu, 10 Sep 2009 09:59:33 -0700 Received: from saunalahti-vams (vs3-12.mail.saunalahti.fi [62.142.5.96]) by emh02-2.mail.saunalahti.fi (Postfix) with SMTP id 28307EF51A; Thu, 10 Sep 2009 19:59:30 +0300 (EEST) Received: from emh01.mail.saunalahti.fi ([62.142.5.107]) by vs3-12.mail.saunalahti.fi ([62.142.5.96]) with SMTP (gateway) id A02E2F1F059; Thu, 10 Sep 2009 19:59:30 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh01.mail.saunalahti.fi (Postfix) with ESMTP id 6CCC14050; Thu, 10 Sep 2009 19:59:25 +0300 (EEST) From: Jari Aalto To: rms@gnu.org Cc: 4382@debbugs.gnu.org, gse@antisleep.com Subject: Re: bug#4382: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N Organization: Private References: <87pra0v3g6.fsf@jondo.cante.net> Date: Thu, 10 Sep 2009 19:59:25 +0300 In-Reply-To: (Richard Stallman's message of "Thu, 10 Sep 2009 10:59:37 -0400") Message-ID: <87hbvasple.fsf@jondo.cante.net> User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Antivirus: VAMS --=-=-= Richard Stallman writes: > What does this feature do? > Where is the text to describe it? The code implements: (define-key ctl-x-r-map "N" 'number-rectangle) Where C-h f number-rectangle is described as: Insert numbers in front of lines in rectangle BEG END. START-AT specifices the first number to start at. FORMAT is format string where %i denotes inserted number. If prefix arg NO-ZERO-PADDING is non-nil, do not padd numbers Demonstration, initial data: Item one Item two Item three Put cursor at first line's character, draw region up till last line's first character. Call M-x number-rectangle: First number [1] (default 1): Format: %i Result: 1 Item one 2 Item two 3 Item three It the region would have been longer, say over 10 lines, the padding would have taken in effect: 01 Item one 02 Item two ... Jari Here is slightly updated patch which corrects the name of the function to `number-rectangle'. 2009-03-22 Jari Aalto * rect.el (number-rectangle): New user function. (rectangle-number-line-callback): New function. (rectangle-number-line-format-history): New variable. (rectangle-number-line-counter): New variable. (define-key ctl-x-r-map "N" 'number-rectangle): New user key binding. The basis of the rectangle numbering code was lifted from gse-number-rect.el, orignally developed by Scott Evans . Used by permission (GPL). --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-lisp-rect.el-number-rectangle-New-user-key-binding-C.patch >From cdf6167d8c8975f74a42d943f48b6db99fe9c678 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Thu, 10 Sep 2009 19:55:38 +0300 Subject: [PATCH] lisp/rect.el: (number-rectangle): New user key binding C-x r N Signed-off-by: Jari Aalto --- lisp/rect.el | 40 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 40 insertions(+), 0 deletions(-) diff --git a/lisp/rect.el b/lisp/rect.el index eb188fc..6b63c81 100644 --- a/lisp/rect.el +++ b/lisp/rect.el @@ -39,6 +39,7 @@ ;;;###autoload (define-key ctl-x-r-map "y" 'yank-rectangle) ;;;###autoload (define-key ctl-x-r-map "o" 'open-rectangle) ;;;###autoload (define-key ctl-x-r-map "t" 'string-rectangle) +;;;###autoload (define-key ctl-x-r-map "N" 'number-rectangle) ;;; Code: @@ -395,6 +396,45 @@ rectangle which were empty." (delete-region pt (point)) (indent-to endcol))))) +(defvar rectangle-number-line-counter nil + "Variable holding line numbering information. +Initial value is set in function `rectangle-number-lines' +and incremented for each line in `rectangle-number-line-callback'.") + +(defvar rectangle-number-line-format-history nil + "History variable that records previous format strings.") + +(defun rectangle-number-line-callback (start end format-string) + (move-to-column start t) + (setq rectangle-number-line-counter (+ rectangle-number-line-counter 1)) + (insert (format format-string rectangle-number-line-counter))) + +(defun rectangle-number-lines (beg end start-at format &optional no-zero-padding) + "Insert numbers in front of lines in rectangle BEG END. + +START-AT specifices the first number to start at. +FORMAT is format string where %i denotes inserted number. + +If prefix arg NO-ZERO-PADDING is non-nil, do not padd numbers +with leading zeroes." + (interactive + (list + (region-beginning) + (region-end) + (if (functionp 'read-number) + (read-number "First number [1]: " 1) + (string-to-int (read-string "First number [1]: " nil nil "1"))) + (read-string "Format: " "%i " 'rectangle-number-line-format-history) + current-prefix-arg)) + (setq start-at (- start-at 1)) + (unless no-zero-padding + (let* ((max (+ (count-lines beg end) start-at)) + (longest (length (int-to-string (+ 1 max)))) + (fmt (concat "%0" (int-to-string longest) "i"))) + (setq format (replace-regexp-in-string "%i" fmt format)))) + (setq rectangle-number-line-counter start-at) + (apply-on-rectangle 'rectangle-number-line-callback beg end format)) + (provide 'rect) ;; arch-tag: 178847b3-1f50-4b03-83de-a6e911cc1d16 -- 1.6.3.3 --=-=-=-- From rgm@gnu.org Thu Sep 10 10:42:47 2009 Received: (at control) by emacsbugs.donarmstrong.com; 10 Sep 2009 17:42:47 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-3.2 required=4.0 tests=AWL,ONEWORD autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8AHgkMo020451 for ; Thu, 10 Sep 2009 10:42:47 -0700 Received: from rgm by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MlnfR-0004dM-A0; Thu, 10 Sep 2009 13:42:45 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19113.14997.229379.374913@fencepost.gnu.org> Date: Thu, 10 Sep 2009 13:42:45 -0400 From: Glenn Morris To: control Subject: control forcemerge 3794 4389 severity 4382 wishlist reassign 4390 spam reassign 4391 spam From rms@gnu.org Fri Sep 11 14:00:58 2009 Received: (at 4382) by emacsbugs.donarmstrong.com; 11 Sep 2009 21:00:58 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.4 required=4.0 tests=AWL,FOURLA,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8BL0uxn026595 for <4382@emacsbugs.donarmstrong.com>; Fri, 11 Sep 2009 14:00:57 -0700 Received: from rms by fencepost.gnu.org with local (Exim 4.67) (envelope-from ) id 1MmDEl-0005XZ-9Z; Fri, 11 Sep 2009 17:00:55 -0400 Content-Type: text/plain; charset=ISO-8859-15 From: Richard Stallman To: Jari Aalto , 4382@debbugs.gnu.org CC: 4382@debbugs.gnu.org, gse@antisleep.com In-reply-to: <87hbvasple.fsf@jondo.cante.net> (message from Jari Aalto on Thu, 10 Sep 2009 19:59:25 +0300) Subject: Re: bug#4382: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N Reply-to: rms@gnu.org References: <87pra0v3g6.fsf@jondo.cante.net> <87hbvasple.fsf@jondo.cante.net> Message-Id: Date: Fri, 11 Sep 2009 17:00:55 -0400 Please include in your patch a change to etc/NEWS. From jari.aalto@cante.net Sat Sep 12 08:46:30 2009 Received: (at 4382) by emacsbugs.donarmstrong.com; 12 Sep 2009 15:46:30 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.7 required=4.0 tests=AWL,FOURLA,HAS_BUG_NUMBER, IMPRONONCABLE_2,MURPHY_DRUGS_REL8 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh04.mail.saunalahti.fi (emh04.mail.saunalahti.fi [62.142.5.110]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8CFkSJg004427 for <4382@emacsbugs.donarmstrong.com>; Sat, 12 Sep 2009 08:46:30 -0700 Received: from saunalahti-vams (vs3-10.mail.saunalahti.fi [62.142.5.94]) by emh04-2.mail.saunalahti.fi (Postfix) with SMTP id 6881413B676 for <4382@emacsbugs.donarmstrong.com>; Sat, 12 Sep 2009 18:46:27 +0300 (EEST) Received: from emh04.mail.saunalahti.fi ([62.142.5.110]) by vs3-10.mail.saunalahti.fi ([62.142.5.94]) with SMTP (gateway) id A044BC5B099; Sat, 12 Sep 2009 18:46:27 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh04.mail.saunalahti.fi (Postfix) with ESMTP id 4E74741BE8 for <4382@emacsbugs.donarmstrong.com>; Sat, 12 Sep 2009 18:46:25 +0300 (EEST) From: Jari Aalto To: 4382@debbugs.gnu.org Subject: Re: bug#4382: Acknowledgement ([PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N) Organization: Private References: <87pra0v3g6.fsf@jondo.cante.net> Date: Sat, 12 Sep 2009 18:46:25 +0300 In-Reply-To: (Emacs bug Tracking System's message of "Wed, 09 Sep 2009 10:10:05 +0000") Message-ID: <87skesnp2m.fsf@jondo.cante.net> User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Antivirus: VAMS --=-=-= > RMS: > Please include in your patch a change to etc/NEWS. ** The new command `number-rectangle' bound globally to `C-x r N' can number selected lines in region. The optional zero padding, if the line count is bigger than 9, is controlled by a prefix argument. Patch below is against CVS as of 2009-09-12 --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-etc-NEWS-The-new-command-number-rectangle.patch >From 8909a2901ed5bc5be1d38590ec7e6795e473f323 Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Sat, 12 Sep 2009 18:45:56 +0300 Subject: [PATCH] etc/NEWS: The new command number-rectangle Signed-off-by: Jari Aalto --- etc/NEWS | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/etc/NEWS b/etc/NEWS index c677213..f726c8b 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -123,6 +123,10 @@ default-file-name-coding-system on Mac OS X. * Changes in Specialized Modes and Packages in Emacs 23.2 +** The new command `number-rectangle' bound globally to `C-x r N' can +number selected lines in region. The optional zero padding, if the line +count is bigger than 9, is controlled by a prefix argument. + ** .calc.el and .abbrev_defs obey user-emacs-directory. ** Calc graphing commands (`g f' etc.) now work on MS-Windows, -- 1.6.3.3 --=-=-=-- From jari.aalto@cante.net Sun Sep 13 07:02:47 2009 Received: (at control) by emacsbugs.donarmstrong.com; 13 Sep 2009 14:02:47 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.7 required=4.0 tests=AWL,MURPHY_DRUGS_REL8, VALID_BTS_CONTROL autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from emh06.mail.saunalahti.fi (emh06.mail.saunalahti.fi [62.142.5.116]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8DE2jbO025424 for ; Sun, 13 Sep 2009 07:02:47 -0700 Received: from saunalahti-vams (vs3-12.mail.saunalahti.fi [62.142.5.96]) by emh06-2.mail.saunalahti.fi (Postfix) with SMTP id A787EC7DE7 for ; Sun, 13 Sep 2009 17:02:44 +0300 (EEST) Received: from emh04.mail.saunalahti.fi ([62.142.5.110]) by vs3-12.mail.saunalahti.fi ([62.142.5.96]) with SMTP (gateway) id A04A7F98B71; Sun, 13 Sep 2009 17:02:44 +0300 Received: from jondo.cante.net (a91-155-187-216.elisa-laajakaista.fi [91.155.187.216]) by emh04.mail.saunalahti.fi (Postfix) with ESMTP id 8B2FF41BE2 for ; Sun, 13 Sep 2009 17:02:42 +0300 (EEST) To: control@debbugs.gnu.org Subject: Bug#4382 change of tags / patch Mail-Copies-To: poster X-Bug-User-Agent: Emacs 23.1.1 and tinydebian.el 2009.0812.1741 From: Jari Aalto Date: Sun, 13 Sep 2009 17:02:42 +0300 Message-ID: <873a6rndrx.fsf@jondo.cante.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Antivirus: VAMS tags 4382 + patch thanks From dann@godzilla.ics.uci.edu Wed Sep 16 03:52:23 2009 Received: (at 4382) by emacsbugs.donarmstrong.com; 16 Sep 2009 10:52:24 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-6.5 required=4.0 tests=AWL,FOURLA,HAS_BUG_NUMBER, MURPHY_DRUGS_REL8,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from barrelv2.ics.uci.edu (barrelv2.ics.uci.edu [128.195.1.114]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n8GAqMq6005137 for <4382@emacsbugs.donarmstrong.com>; Wed, 16 Sep 2009 03:52:23 -0700 Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by barrelv2.ics.uci.edu (8.13.8+Sun/8.13.8) with ESMTP id n8GAq9XJ014397; Wed, 16 Sep 2009 03:52:09 -0700 (PDT) Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id n8GAq8Xq011831; Wed, 16 Sep 2009 03:52:08 -0700 (PDT) Date: Wed, 16 Sep 2009 03:52:08 -0700 (PDT) Message-Id: <200909161052.n8GAq8Xq011831@godzilla.ics.uci.edu> From: Dan Nicolaescu To: Jari Aalto Cc: 4382@debbugs.gnu.org, Scott Evans Subject: Re: bug#4382: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N References: <87pra0v3g6.fsf@jondo.cante.net> X-Debbugs-No-Ack: yes In-Reply-To: <87pra0v3g6.fsf@jondo.cante.net> (Jari Aalto's message of "Wed, 09 Sep 2009 13:04:57 +0300") Lines: 10 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-ICS-MailScanner-Information: Please contact the ISP for more information X-ICS-MailScanner-ID: n8GAq9XJ014397 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu Jari Aalto writes: > Scott has just informaed me that his FSF assignment papers have been > processed and cleared. Based on his work at > http://www.antisleep.com/elisp/gse-number-rect.el I propose following > new feature to be added to the rect.el package. FWIW, I have had this code in my .emacs ever since it was posted to gnu.emacs.sources, and I used it regularly. IMHO it is a nice addition to the rectangle functions. From debbugs-submit-bounces@debbugs.gnu.org Fri Dec 03 12:17:10 2010 Received: (at control) by debbugs.gnu.org; 3 Dec 2010 17:17:10 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1POZFu-0004up-0r for submit@debbugs.gnu.org; Fri, 03 Dec 2010 12:17:10 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1POZFs-0004ub-BN; Fri, 03 Dec 2010 12:17:09 -0500 Received: from localhost ([127.0.0.1]:59183) by fencepost.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1POZLO-0000jx-Qi; Fri, 03 Dec 2010 12:22:50 -0500 To: 7538@debbugs.gnu.org Subject: Re: bug#7538: [PATCH / wishlist] rect.el: (rectangle-number-lines) New user command C-x r N References: <874oavxk1t.fsf@picasso.cante.net> From: Glenn Morris X-Spook: Blowpipe cryptographic UOP Europol terrorism Saddam X-Ran: Y=1(X$`mY>O@%&ntqt\-Y_"fy4g^?8NV?CH2`=@>(b'\&R"sT>g~B*?zx7!DfZ~*fQvvkz X-Hue: magenta X-Debbugs-No-Ack: yes X-Attribution: GM Date: Fri, 03 Dec 2010 12:22:50 -0500 In-Reply-To: <874oavxk1t.fsf@picasso.cante.net> (Jari Aalto's message of "Fri\, 03 Dec 2010 11\:49\:50 +0200") Message-ID: <9f62vakbyt.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.2 (------) X-Debbugs-Envelope-To: control 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.2 (------) merge 4382 7538 stop This is a duplicate of http://debbugs.gnu.org/cgi/bugreport.cgi?bug=4382 Same submitter, same typo in the ChangeLog. From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 14 21:50:50 2010 Received: (at 4382) by debbugs.gnu.org; 15 Dec 2010 02:50:50 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PShS6-0008Th-3a for submit@debbugs.gnu.org; Tue, 14 Dec 2010 21:50:50 -0500 Received: from vm-emlprdomr-05.its.yale.edu ([130.132.50.146]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PShS4-0008TU-5a for 4382@debbugs.gnu.org; Tue, 14 Dec 2010 21:50:48 -0500 Received: from furball (bb121-6-218-24.singnet.com.sg [121.6.218.24]) (authenticated bits=0) by vm-emlprdomr-05.its.yale.edu (8.14.4/8.14.4) with ESMTP id oBF2ux4o022822 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 14 Dec 2010 21:57:01 -0500 Received: by furball (Postfix, from userid 1000) id 226DB1604BC; Tue, 14 Dec 2010 21:56:57 -0500 (EST) From: Chong Yidong To: Jari Aalto Subject: Re: [PATCH] lisp/rect.el: (rectangle-number-lines): New user key binding C-x r N References: <874oavxk1t.fsf@picasso.cante.net> Date: Wed, 15 Dec 2010 10:56:56 +0800 In-Reply-To: <874oavxk1t.fsf@picasso.cante.net> (Jari Aalto's message of "Fri, 03 Dec 2010 11:49:50 +0200") Message-ID: <87k4jbvj47.fsf@stupidchicken.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.71 on 130.132.50.146 X-Spam-Score: -3.1 (---) X-Debbugs-Envelope-To: 4382 Cc: 4382@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: -3.1 (---) > Scott has just informaed me that his FSF assignment papers have been > processed and cleared. Based on his work at > http://www.antisleep.com/elisp/gse-number-rect.el I propose following > new feature to be added to the rect.el package. I have committed this to the trunk, with some tweaks. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 14 21:51:05 2010 Received: (at control) by debbugs.gnu.org; 15 Dec 2010 02:51:05 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PShSL-0008US-DW for submit@debbugs.gnu.org; Tue, 14 Dec 2010 21:51:05 -0500 Received: from vm-emlprdomr-04.its.yale.edu ([130.132.50.145]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PShSK-0008Tx-FF for control@debbugs.gnu.org; Tue, 14 Dec 2010 21:51:04 -0500 Received: from furball (bb121-6-218-24.singnet.com.sg [121.6.218.24]) (authenticated bits=0) by vm-emlprdomr-04.its.yale.edu (8.14.4/8.14.4) with ESMTP id oBF2vGA2031811 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 14 Dec 2010 21:57:19 -0500 Received: by furball (Postfix, from userid 1000) id AAC4C1604BC; Tue, 14 Dec 2010 21:57:14 -0500 (EST) From: Chong Yidong To: control@debbugs.gnu.org Subject: close 4382 Date: Wed, 15 Dec 2010 10:57:14 +0800 Message-ID: <87hbefhhf9.fsf@stupidchicken.com> MIME-Version: 1.0 Content-Type: text/plain X-Scanned-By: MIMEDefang 2.71 on 130.132.50.145 X-Spam-Score: -3.0 (---) X-Debbugs-Envelope-To: control 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: -3.0 (---) close 4382 thanks From unknown Mon Sep 08 15:57:34 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 12 Jan 2011 12:24:03 +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