From unknown Sat Aug 09 19:20:29 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#9511 <9511@debbugs.gnu.org> To: bug#9511 <9511@debbugs.gnu.org> Subject: Status: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer Reply-To: bug#9511 <9511@debbugs.gnu.org> Date: Sun, 10 Aug 2025 02:20:29 +0000 retitle 9511 Moving the point to / with C-M-f and C-M-b when reading a file= name from minibuffer reassign 9511 emacs submitter 9511 Masatake YAMATO severity 9511 wishlist tag 9511 fixed patch thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 15 04:43:58 2011 Received: (at submit) by debbugs.gnu.org; 15 Sep 2011 08:43:58 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R47Y6-0008G9-8P for submit@debbugs.gnu.org; Thu, 15 Sep 2011 04:43:58 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R47Y1-0008G0-Vo for submit@debbugs.gnu.org; Thu, 15 Sep 2011 04:43:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R47TX-0001kl-Mf for submit@debbugs.gnu.org; Thu, 15 Sep 2011 04:39:16 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:36494) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R47TX-0001kh-LE for submit@debbugs.gnu.org; Thu, 15 Sep 2011 04:39:15 -0400 Received: from eggs.gnu.org ([140.186.70.92]:35828) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R47TT-000474-G8 for bug-gnu-emacs@gnu.org; Thu, 15 Sep 2011 04:39:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R47TS-0001i7-4n for bug-gnu-emacs@gnu.org; Thu, 15 Sep 2011 04:39:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56620) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R47TR-0001gh-Sf for bug-gnu-emacs@gnu.org; Thu, 15 Sep 2011 04:39:10 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p8F8d86m002193 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 15 Sep 2011 04:39:08 -0400 Received: from localhost (beach.nrt.redhat.com [10.64.200.71]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id p8F8d7Oq018533 for ; Thu, 15 Sep 2011 04:39:07 -0400 Date: Thu, 15 Sep 2011 17:39:06 +0900 (JST) Message-Id: <20110915.173906.185902603333825732.yamato@redhat.com> To: bug-gnu-emacs@gnu.org Subject: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer From: Masatake YAMATO Organization: Red Hat Japan, Inc. Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 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: -6.3 (------) 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: -6.3 (------) This is a request for merge a patch to official GNU Emacs source tree. Following patch adds a function to move the point to / with C-M-f and C-M-b when reading a filename from minibuffer. See also the thread at http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00155.html 2011-09-15 Masatake YAMATO * minibuffer.el (minibuffer-local-filename-syntax): New variable. (read-file-name-default): Install the syntax table. === modified file 'lisp/minibuffer.el' --- lisp/minibuffer.el 2011-09-02 00:36:58 +0000 +++ lisp/minibuffer.el 2011-09-15 06:27:34 +0000 @@ -1997,6 +1997,31 @@ (funcall (or read-file-name-function #'read-file-name-default) prompt dir default-filename mustmatch initial predicate)) +(defvar minibuffer-local-filename-syntax + (let ((table (make-syntax-table)) + (punctuation (car (string-to-syntax ".")))) + ;; Convert all punctuation entries to symbol. + (map-char-table (lambda (cc syntax) + (when (and syntax + (eq (car syntax) + punctuation)) + (let* ((cons? (consp cc)) + (begin (if cons? (car cc) cc)) + (end (if cons? (cdr cc) begin)) + (c begin)) + (while (<= c end) + (modify-syntax-entry c "_" table) + (setq c (1+ c)))))) + table) + (mapc + (lambda (c) + (modify-syntax-entry c "." table)) + '(?/ + ?: ?\\ + )) + table) + "Syntax table to be used in minibuffer for reading file name.") + ;; minibuffer-completing-file-name is a variable used internally in minibuf.c ;; to determine whether to use minibuffer-local-filename-completion-map or ;; minibuffer-local-completion-map. It shouldn't be exported to Elisp. @@ -2065,7 +2090,9 @@ (lambda () (with-current-buffer (window-buffer (minibuffer-selected-window)) - (read-file-name--defaults dir initial))))) + (read-file-name--defaults dir initial)))) + (set-syntax-table minibuffer-local-filename-syntax) + ) (completing-read prompt 'read-file-name-internal pred mustmatch insdef 'file-name-history default-filename))) From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 15 09:08:12 2011 Received: (at 9511) by debbugs.gnu.org; 15 Sep 2011 13:08:12 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R4Bfo-00036z-5Z for submit@debbugs.gnu.org; Thu, 15 Sep 2011 09:08:12 -0400 Received: from ironport2-out.teksavvy.com ([206.248.154.181] helo=ironport2-out.pppoe.ca) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R4Bfl-00036s-P4 for 9511@debbugs.gnu.org; Thu, 15 Sep 2011 09:08:11 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EAHD2cU5FxK3+/2dsb2JhbABDp0x5gVMBAQVWIxALNBIUGA0kvnaGdASgSYRE X-IronPort-AV: E=Sophos;i="4.68,387,1312171200"; d="scan'208";a="136521740" Received: from 69-196-173-254.dsl.teksavvy.com (HELO ceviche.home) ([69.196.173.254]) by ironport2-out.pppoe.ca with ESMTP/TLS/ADH-AES256-SHA; 15 Sep 2011 09:03:30 -0400 Received: by ceviche.home (Postfix, from userid 20848) id 6FA11660B6; Thu, 15 Sep 2011 09:03:30 -0400 (EDT) From: Stefan Monnier To: Masatake YAMATO Subject: Re: bug#9511: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer Message-ID: References: <20110915.173906.185902603333825732.yamato@redhat.com> Date: Thu, 15 Sep 2011 09:03:30 -0400 In-Reply-To: <20110915.173906.185902603333825732.yamato@redhat.com> (Masatake YAMATO's message of "Thu, 15 Sep 2011 17:39:06 +0900 (JST)") 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: 9511 Cc: 9511@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: -2.1 (--) > + (when (and syntax > + (eq (car syntax) > + punctuation)) If syntax is nil, (car syntax) is nil, so the above is equivalent to (when (eq (car syntax) punctuation) > + (let* ((cons? (consp cc)) > + (begin (if cons? (car cc) cc)) > + (end (if cons? (cdr cc) begin)) > + (c begin)) > + (while (<= c end) > + (modify-syntax-entry c "_" table) > + (setq c (1+ c)))))) Aka (modify-syntax-entry cc "_" table), since it accepts the same "cons to represent a range" convention ;-) Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 15 10:09:52 2011 Received: (at 9511) by debbugs.gnu.org; 15 Sep 2011 14:09: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 1R4CdT-0007lh-HO for submit@debbugs.gnu.org; Thu, 15 Sep 2011 10:09:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1R4CdQ-0007lZ-85 for 9511@debbugs.gnu.org; Thu, 15 Sep 2011 10:09:49 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p8FE59ZN030007 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 15 Sep 2011 10:05:09 -0400 Received: from localhost (dhcp-193-19.nrt.redhat.com [10.64.193.19]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p8FE57DY013291; Thu, 15 Sep 2011 10:05:07 -0400 Date: Thu, 15 Sep 2011 23:05:06 +0900 (JST) Message-Id: <20110915.230506.955686883787522742.yamato@redhat.com> To: monnier@iro.umontreal.ca Subject: Re: bug#9511: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer From: Masatake YAMATO In-Reply-To: References: <20110915.173906.185902603333825732.yamato@redhat.com> Organization: Red Hat Japan, Inc. Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-Spam-Score: -8.6 (--------) X-Debbugs-Envelope-To: 9511 Cc: 9511@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: -8.7 (--------) Thank you for reviwing again. === modified file 'lisp/minibuffer.el' *** lisp/minibuffer.el 2011-09-02 00:36:58 +0000 --- lisp/minibuffer.el 2011-09-15 13:48:51 +0000 *************** *** 1997,2002 **** --- 1997,2020 ---- (funcall (or read-file-name-function #'read-file-name-default) prompt dir default-filename mustmatch initial predicate)) + (defvar minibuffer-local-filename-syntax + (let ((table (make-syntax-table)) + (punctuation (car (string-to-syntax ".")))) + ;; Convert all punctuation entries to symbol. + (map-char-table (lambda (c syntax) + (when (eq (car syntax) punctuation) + (modify-syntax-entry c "_" table) + )) + table) + (mapc + (lambda (c) + (modify-syntax-entry c "." table)) + '(?/ + ?: ?\\ + )) + table) + "Syntax table to be used in minibuffer for reading file name.") + ;; minibuffer-completing-file-name is a variable used internally in minibuf.c ;; to determine whether to use minibuffer-local-filename-completion-map or ;; minibuffer-local-completion-map. It shouldn't be exported to Elisp. *************** *** 2065,2071 **** (lambda () (with-current-buffer (window-buffer (minibuffer-selected-window)) ! (read-file-name--defaults dir initial))))) (completing-read prompt 'read-file-name-internal pred mustmatch insdef 'file-name-history default-filename))) --- 2083,2091 ---- (lambda () (with-current-buffer (window-buffer (minibuffer-selected-window)) ! (read-file-name--defaults dir initial)))) ! (set-syntax-table minibuffer-local-filename-syntax) ! ) (completing-read prompt 'read-file-name-internal pred mustmatch insdef 'file-name-history default-filename))) From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 15:54:20 2012 Received: (at 9511) by debbugs.gnu.org; 12 Apr 2012 19:54:20 +0000 Received: from localhost ([127.0.0.1]:54861 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIQ5z-0002Ex-4f for submit@debbugs.gnu.org; Thu, 12 Apr 2012 15:54:19 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:53272) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIQ5w-0002En-1h for 9511@debbugs.gnu.org; Thu, 12 Apr 2012 15:54:17 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIQ4Z-0008U3-6j; Thu, 12 Apr 2012 21:52:51 +0200 From: Lars Magne Ingebrigtsen To: Masatake YAMATO Subject: Re: bug#9511: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer References: <20110915.173906.185902603333825732.yamato@redhat.com> X-Now-Playing: His Name Is Alive's _ECLIPX_: "Never See The Light of Day" Date: Thu, 12 Apr 2012 21:52:50 +0200 In-Reply-To: <20110915.173906.185902603333825732.yamato@redhat.com> (Masatake YAMATO's message of "Thu, 15 Sep 2011 17:39:06 +0900 (JST)") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SIQ4Z-0008U3-6j X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334865172.98517@0hKni4lit0eP091loTuOjQ X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9511 Cc: 9511@debbugs.gnu.org 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: -1.9 (-) Masatake YAMATO writes: > This is a request for merge a patch to official GNU Emacs source tree. > Following patch adds a function to move the point to / with > C-M-f and C-M-b when reading a filename from minibuffer. Isn't this virtually the same as `M-f'/`M-b' in most cases? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 21:31:42 2012 Received: (at 9511) by debbugs.gnu.org; 13 Apr 2012 01:31:42 +0000 Received: from localhost ([127.0.0.1]:55309 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIVMQ-0005fv-15 for submit@debbugs.gnu.org; Thu, 12 Apr 2012 21:31:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:6292) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIVMJ-0005fi-Ai for 9511@debbugs.gnu.org; Thu, 12 Apr 2012 21:31:36 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q3D1UDCm020285 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 12 Apr 2012 21:30:13 -0400 Received: from localhost (vpn-225-138.phx2.redhat.com [10.3.225.138]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q3D1UCkf019070; Thu, 12 Apr 2012 21:30:12 -0400 Date: Fri, 13 Apr 2012 10:30:11 +0900 (JST) Message-Id: <20120413.103011.1645885315853243325.yamato@redhat.com> To: larsi@gnus.org Subject: Re: bug#9511: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer From: Masatake YAMATO In-Reply-To: References: <20110915.173906.185902603333825732.yamato@redhat.com> Organization: Red Hat Japan, Inc. Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: 9511 Cc: 9511@debbugs.gnu.org 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.9 (------) Lars Magne Ingebrigtsen writes: > Masatake YAMATO writes: > >> This is a request for merge a patch to official GNU Emacs source tree. >> Following patch adds a function to move the point to / with >> C-M-f and C-M-b when reading a filename from minibuffer. > > Isn't this virtually the same as `M-f'/`M-b' in most cases? M-f / M-b captures periods used in extension(suffix). Consider /tmp/foo.el If you type M-b, you will see /tmp/foo.el What I want with M-C-b is /tmp/foo.el I think read-file-name should know path separator defined by underlying operating system. Masatake YAMATO > -- > (domestic pets only, the antidote for overdose, milk.) > bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 13 17:37:28 2012 Received: (at 9511) by debbugs.gnu.org; 13 Apr 2012 21:37:28 +0000 Received: from localhost ([127.0.0.1]:57746 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIoBL-0004wz-Hr for submit@debbugs.gnu.org; Fri, 13 Apr 2012 17:37:28 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:34953) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIoBJ-0004wr-1k for 9511@debbugs.gnu.org; Fri, 13 Apr 2012 17:37:26 -0400 Received: from static-195.22.91.6.addr.tdcsong.se ([195.22.91.6] helo=rusty) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIo9u-0008E6-MD; Fri, 13 Apr 2012 23:35:58 +0200 From: Lars Ingebrigtsen To: Masatake YAMATO Subject: Re: bug#9511: Moving the point to / with C-M-f and C-M-b when reading a filename from minibuffer References: <20110915.173906.185902603333825732.yamato@redhat.com> <20120413.103011.1645885315853243325.yamato@redhat.com> Date: Fri, 13 Apr 2012 23:35:57 +0200 In-Reply-To: <20120413.103011.1645885315853243325.yamato@redhat.com> (Masatake YAMATO's message of "Fri, 13 Apr 2012 10:30:11 +0900 (JST)") Message-ID: <87pqbbs4aq.fsf@gnus.org> User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SIo9u-0008E6-MD X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334957759.00694@Vii8TkbcYbEoXjBAjDaikA X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9511 Cc: 9511@debbugs.gnu.org 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: -1.9 (-) Masatake YAMATO writes: > Consider > > /tmp/foo.el > > If you type M-b, you will see > > /tmp/foo.el > > What I want with M-C-b is > > /tmp/foo.el Yeah, that seems useful. I'm applying your patch with some white-space cleanups. -- (domestic pets only, the antidote for overdose, milk.) http://lars.ingebrigtsen.no * Sent from my Rome From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 13 17:45:07 2012 Received: (at control) by debbugs.gnu.org; 13 Apr 2012 21:45:07 +0000 Received: from localhost ([127.0.0.1]:57755 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIoIk-00058c-Oz for submit@debbugs.gnu.org; Fri, 13 Apr 2012 17:45:07 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:48318) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIoIj-00058U-2X for control@debbugs.gnu.org; Fri, 13 Apr 2012 17:45:05 -0400 Received: from static-195.22.91.6.addr.tdcsong.se ([195.22.91.6] helo=rusty) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIoHL-0008Ko-0E for control@debbugs.gnu.org; Fri, 13 Apr 2012 23:43:39 +0200 Date: Fri, 13 Apr 2012 23:43:38 +0200 Message-Id: <87obqvs3xx.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #9511 X-MailScanner-ID: 1SIoHL-0008Ko-0E X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334958219.12256@1J3CcE00JlX2JCK4NqU79g X-Spam-Status: No X-Spam-Score: -1.9 (-) 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: -1.9 (-) tags 9511 fixed close 9511 24.2 From unknown Sat Aug 09 19:20:29 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, 12 May 2012 11: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