From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 26 00:13:58 2011 Received: (at submit) by debbugs.gnu.org; 26 Dec 2011 05:13: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 1Rf2sn-0007GY-Ul for submit@debbugs.gnu.org; Mon, 26 Dec 2011 00:13:58 -0500 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Rf2si-0007GN-Lt for submit@debbugs.gnu.org; Mon, 26 Dec 2011 00:13:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rf2qG-0000x9-Gs for submit@debbugs.gnu.org; Mon, 26 Dec 2011 00:11:21 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([140.186.70.17]:44982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rf2qG-0000x5-E5 for submit@debbugs.gnu.org; Mon, 26 Dec 2011 00:11:20 -0500 Received: from eggs.gnu.org ([140.186.70.92]:59748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rf2qF-0008EF-0m for bug-gnu-emacs@gnu.org; Mon, 26 Dec 2011 00:11:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rf2qD-0000w6-Mq for bug-gnu-emacs@gnu.org; Mon, 26 Dec 2011 00:11:18 -0500 Received: from mx1.aist.go.jp ([150.29.246.133]:41528) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rf2qD-0000tJ-6T for bug-gnu-emacs@gnu.org; Mon, 26 Dec 2011 00:11:17 -0500 Received: from rqsmtp2.aist.go.jp (rqsmtp2.aist.go.jp [150.29.254.123]) by mx1.aist.go.jp with ESMTP id pBQ5B9bu028471 for ; Mon, 26 Dec 2011 14:11:10 +0900 (JST) env-from (handa@m17n.org) Received: from smtp4.aist.go.jp by rqsmtp2.aist.go.jp with ESMTP id pBQ5B9Qd017572 for ; Mon, 26 Dec 2011 14:11:09 +0900 (JST) env-from (handa@m17n.org) Received: by smtp4.aist.go.jp with ESMTP id pBQ5B8IP007646 for ; Mon, 26 Dec 2011 14:11:08 +0900 (JST) env-from (handa@m17n.org) From: Kenichi Handa To: bug-gnu-emacs@gnu.org Subject: 24.0.92; wrong char-width by display table Date: Mon, 26 Dec 2011 14:10:52 +0900 Message-ID: <87vcp3lxyb.fsf@m17n.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-detected-operating-system: by eggs.gnu.org: Solaris 9 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -4.8 (----) 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: -4.8 (----) I received the bug report about char-width used with display table as this. (progn (setq buffer-display-table (make-display-table)) (aset buffer-display-table ?a [?エ ?イ]) (char-width ?a)) => 2 The attached is a patch to fix it. As this bug exists in Emacs 23.3 (so it is not a regression), I have not yet installed it to the trunk. What should I do? (1) commit it to emacs-23 branch now (2) commit it to trunk now (3) after the release of 24, commit it to trunk --- Kenichi Handa handa@m17n.org === modified file 'src/ChangeLog' --- src/ChangeLog 2011-12-25 09:06:42 +0000 +++ src/ChangeLog 2011-12-26 04:57:25 +0000 @@ -1,3 +1,8 @@ +2011-12-26 Kenichi Handa + + * character.c (char_width): New function. + (Fchar_width, c_string_width, lisp_string_width): Use char_width. + 2011-12-24 Andreas Schwab * callint.c (Fcall_interactively): Don't truncate prompt string. === modified file 'src/character.c' --- src/character.c 2011-11-20 02:29:42 +0000 +++ src/character.c 2011-12-26 04:55:24 +0000 @@ -308,6 +308,31 @@ } } + +/* Return width (columns) of C considering the buffer display table DP. */ + +static int +char_width (int c, struct Lisp_Char_Table *dp) +{ + int width = CHAR_WIDTH (c); + + if (dp) + { + Lisp_Object disp = DISP_CHAR_VECTOR (dp, c), ch; + int i; + + if (VECTORP (disp)) + for (i = 0, width = 0; i < ASIZE (disp); i++) + { + ch = AREF (disp, i); + if (CHARACTERP (ch)) + width += CHAR_WIDTH (XFASTINT (ch)); + } + } + return width; +} + + DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, doc: /* Return width of CHAR when displayed in the current buffer. The width is measured by how many columns it occupies on the screen. @@ -315,21 +340,11 @@ usage: (char-width CHAR) */) (Lisp_Object ch) { - Lisp_Object disp; int c, width; - struct Lisp_Char_Table *dp = buffer_display_table (); CHECK_CHARACTER (ch); c = XINT (ch); - - /* Get the way the display table would display it. */ - disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil; - - if (VECTORP (disp)) - width = sanitize_char_width (ASIZE (disp)); - else - width = CHAR_WIDTH (c); - + width = char_width (c, buffer_display_table ()); return make_number (width); } @@ -350,22 +365,9 @@ while (i_byte < len) { - int bytes, thiswidth; - Lisp_Object val; + int bytes; int c = STRING_CHAR_AND_LENGTH (str + i_byte, bytes); - - if (dp) - { - val = DISP_CHAR_VECTOR (dp, c); - if (VECTORP (val)) - thiswidth = sanitize_char_width (ASIZE (val)); - else - thiswidth = CHAR_WIDTH (c); - } - else - { - thiswidth = CHAR_WIDTH (c); - } + int thiswidth = char_width (c, dp); if (precision > 0 && (width + thiswidth > precision)) @@ -447,18 +449,7 @@ else c = str[i_byte], bytes = 1; chars = 1; - if (dp) - { - val = DISP_CHAR_VECTOR (dp, c); - if (VECTORP (val)) - thiswidth = sanitize_char_width (ASIZE (val)); - else - thiswidth = CHAR_WIDTH (c); - } - else - { - thiswidth = CHAR_WIDTH (c); - } + thiswidth = char_width (c, dp); } if (precision <= 0) From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 27 17:15:45 2011 Received: (at 10368) by debbugs.gnu.org; 27 Dec 2011 22:15:45 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RffJB-00077l-Ae for submit@debbugs.gnu.org; Tue, 27 Dec 2011 17:15:45 -0500 Received: from pruche.dit.umontreal.ca ([132.204.246.22]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1RffJ9-00077d-9N for 10368@debbugs.gnu.org; Tue, 27 Dec 2011 17:15:43 -0500 Received: from ceviche.home (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id pBRMCnBP027484; Tue, 27 Dec 2011 17:12:56 -0500 Received: by ceviche.home (Postfix, from userid 20848) id 225E6665BF; Mon, 26 Dec 2011 20:16:27 -0500 (EST) From: Stefan Monnier To: Kenichi Handa Subject: Re: bug#10368: 24.0.92; wrong char-width by display table Message-ID: References: <87vcp3lxyb.fsf@m17n.org> Date: Mon, 26 Dec 2011 20:16:26 -0500 In-Reply-To: <87vcp3lxyb.fsf@m17n.org> (Kenichi Handa's message of "Mon, 26 Dec 2011 14:10:52 +0900") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (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.5 X-NAI-Spam-Rules: 2 Rules triggered DATE_IN_PAST_12_24=0.5, RV4084=0 X-NAI-Spam-Version: 2.2.0.9309 : core <4084> : streams <714375> : uri <1035875> X-NAI-Spam-Level: X-Spam-Score: -4.6 (----) X-Debbugs-Envelope-To: 10368 Cc: 10368@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.6 (----) > The attached is a patch to fix it. As this bug exists in > Emacs 23.3 (so it is not a regression), I have not yet > installed it to the trunk. What should I do? > (1) commit it to emacs-23 branch now > (2) commit it to trunk now > (3) after the release of 24, commit it to trunk Please commit it now to emacs-23 branch (and then merge into trunk). Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 12 21:44:27 2012 Received: (at 10368) by debbugs.gnu.org; 13 Jan 2012 02:44:27 +0000 Received: from localhost ([127.0.0.1]:55722 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlX7y-000392-0n for submit@debbugs.gnu.org; Thu, 12 Jan 2012 21:44:27 -0500 Received: from fencepost.gnu.org ([140.186.70.10]:59686) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlX7v-00038v-Gp for 10368@debbugs.gnu.org; Thu, 12 Jan 2012 21:44:24 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1RlX7M-0006hV-Bd; Thu, 12 Jan 2012 21:43:48 -0500 From: Glenn Morris To: Stefan Monnier Subject: Re: bug#10368: 24.0.92; wrong char-width by display table References: <87vcp3lxyb.fsf@m17n.org> X-Spook: insurgency White House Zachawi Kh-11 Consul Roswell X-Ran: e%c0bnYJ\hSqAb@b#\q>_kly%%ur>N9dw$0?M*@cf|^tF\T{d7@ca)pGS651O;0P6h?D9# X-Hue: white X-Attribution: GM Date: Thu, 12 Jan 2012 21:43:48 -0500 In-Reply-To: (Stefan Monnier's message of "Mon, 26 Dec 2011 20:16:26 -0500") 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: -4.2 (----) X-Debbugs-Envelope-To: 10368 Cc: 10368@debbugs.gnu.org, Kenichi Handa 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: -4.2 (----) Stefan Monnier wrote: > Please commit it now to emacs-23 branch (and then merge into trunk). Better hurry if you want it to be in Emacs 23.4: http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00387.html From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 13 01:03:45 2012 Received: (at 10368) by debbugs.gnu.org; 13 Jan 2012 06:03:45 +0000 Received: from localhost ([127.0.0.1]:55755 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlaEr-0007bU-1f for submit@debbugs.gnu.org; Fri, 13 Jan 2012 01:03:45 -0500 Received: from mx1.aist.go.jp ([150.29.246.133]:60985) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlaEn-0007bK-HE for 10368@debbugs.gnu.org; Fri, 13 Jan 2012 01:03:44 -0500 Received: from rqsmtp1.aist.go.jp (rqsmtp1.aist.go.jp [150.29.254.115]) by mx1.aist.go.jp with ESMTP id q0D62xph020552; Fri, 13 Jan 2012 15:02:59 +0900 (JST) env-from (handa@m17n.org) Received: from smtp3.aist.go.jp by rqsmtp1.aist.go.jp with ESMTP id q0D62xbN025756; Fri, 13 Jan 2012 15:02:59 +0900 (JST) env-from (handa@m17n.org) Received: by smtp3.aist.go.jp with ESMTP id q0D62vur004803; Fri, 13 Jan 2012 15:02:57 +0900 (JST) env-from (handa@m17n.org) From: Kenichi Handa To: Glenn Morris Subject: Re: bug#10368: 24.0.92; wrong char-width by display table In-Reply-To: (message from Glenn Morris on Thu, 12 Jan 2012 21:43:48 -0500) Date: Fri, 13 Jan 2012 15:02:38 +0900 Message-ID: <87boq8i1hd.fsf@m17n.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 10368 Cc: monnier@IRO.UMontreal.CA, 10368@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 (-) In article , Glenn Morris writes: > Stefan Monnier wrote: > > Please commit it now to emacs-23 branch (and then merge into trunk). > Better hurry if you want it to be in Emacs 23.4: Thank you for the notice. I somehow missed the above mail from Stefan. I've just committed the fix to emacs-23 branch. But I have not yet merged it into trunk. When I did the merging last time, I had a problem (mainly because I didn't understand bzr well). So, I'd like to ask someone else who is doing that kind of merging regularly. --- Kenichi Handa handa@m17n.org From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 13 02:50:50 2012 Received: (at 10368) by debbugs.gnu.org; 13 Jan 2012 07:50:50 +0000 Received: from localhost ([127.0.0.1]:55799 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlbuU-0001eb-Aw for submit@debbugs.gnu.org; Fri, 13 Jan 2012 02:50:50 -0500 Received: from fencepost.gnu.org ([140.186.70.10]:36594) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RlbuR-0001eT-TN for 10368@debbugs.gnu.org; Fri, 13 Jan 2012 02:50:48 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1Rlbtm-0006yU-GY; Fri, 13 Jan 2012 02:50:07 -0500 From: Glenn Morris To: Kenichi Handa Subject: Re: bug#10368: 24.0.92; wrong char-width by display table References: <87boq8i1hd.fsf@m17n.org> X-Spook: spy Putin DES UFO class struggle mailbomb Defcon X-Ran: 'yie9`qewy<3+%$(M+eUg7FkiT%.}IO,Q5(7"KLe|;"2Z#+(Es(>ZO! (Kenichi Handa's message of "Fri, 13 Jan 2012 15:02:38 +0900") 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: -4.2 (----) X-Debbugs-Envelope-To: 10368 Cc: monnier@IRO.UMontreal.CA, 10368@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: -4.2 (----) Kenichi Handa wrote: > I've just committed the fix to emacs-23 branch. > > But I have not yet merged it into trunk. When I did the > merging last time, I had a problem (mainly because I didn't > understand bzr well). So, I'd like to ask someone else who > is doing that kind of merging regularly. It's generally pretty straightforward with bzrmerge.el. However, in this case there is a merge conflict that I do not know how to resolve. The code in the trunk has been changed to use `sanitize_char_width'. If you can say what the diff against trunk should look like, I could merge it. From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 15 18:42:40 2012 Received: (at 10368) by debbugs.gnu.org; 15 Jan 2012 23:42:40 +0000 Received: from localhost ([127.0.0.1]:58997 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RmZih-0003sS-E2 for submit@debbugs.gnu.org; Sun, 15 Jan 2012 18:42:40 -0500 Received: from mx1.aist.go.jp ([150.29.246.133]:42149) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RmZid-0003sI-AT for 10368@debbugs.gnu.org; Sun, 15 Jan 2012 18:42:38 -0500 Received: from rqsmtp1.aist.go.jp (rqsmtp1.aist.go.jp [150.29.254.115]) by mx1.aist.go.jp with ESMTP id q0FNfeCA028014; Mon, 16 Jan 2012 08:41:40 +0900 (JST) env-from (handa@m17n.org) Received: from smtp3.aist.go.jp by rqsmtp1.aist.go.jp with ESMTP id q0FNfdwD013656; Mon, 16 Jan 2012 08:41:39 +0900 (JST) env-from (handa@m17n.org) Received: by smtp3.aist.go.jp with ESMTP id q0FNfcZO013209; Mon, 16 Jan 2012 08:41:38 +0900 (JST) env-from (handa@m17n.org) From: Kenichi Handa To: Glenn Morris Subject: Re: bug#10368: 24.0.92; wrong char-width by display table In-Reply-To: (message from Glenn Morris on Fri, 13 Jan 2012 02:50:05 -0500) Date: Mon, 16 Jan 2012 08:41:34 +0900 Message-ID: <878vl8ile9.fsf@m17n.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 10368 Cc: monnier@IRO.UMontreal.CA, 10368@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 (-) In article , Glenn Morris writes: > It's generally pretty straightforward with bzrmerge.el. Ah, I didn't know about bzrmerge.el. > However, in this case there is a merge conflict that I do not know how > to resolve. The code in the trunk has been changed to use > `sanitize_char_width'. If you can say what the diff against trunk should > look like, I could merge it. Thank you. Here's the diff against trunk. --- Kenichi Handa handa@m17n.org === modified file 'src/ChangeLog' --- src/ChangeLog 2011-12-25 09:06:42 +0000 +++ src/ChangeLog 2011-12-26 04:57:25 +0000 @@ -1,3 +1,8 @@ +2011-12-26 Kenichi Handa + + * character.c (char_width): New function. + (Fchar_width, c_string_width, lisp_string_width): Use char_width. + 2011-12-24 Andreas Schwab * callint.c (Fcall_interactively): Don't truncate prompt string. === modified file 'src/character.c' --- src/character.c 2011-11-20 02:29:42 +0000 +++ src/character.c 2011-12-26 04:55:24 +0000 @@ -308,6 +308,31 @@ } } + +/* Return width (columns) of C considering the buffer display table DP. */ + +static int +char_width (int c, struct Lisp_Char_Table *dp) +{ + int width = CHAR_WIDTH (c); + + if (dp) + { + Lisp_Object disp = DISP_CHAR_VECTOR (dp, c), ch; + int i; + + if (VECTORP (disp)) + for (i = 0, width = 0; i < ASIZE (disp); i++) + { + ch = AREF (disp, i); + if (CHARACTERP (ch)) + width += CHAR_WIDTH (XFASTINT (ch)); + } + } + return width; +} + + DEFUN ("char-width", Fchar_width, Schar_width, 1, 1, 0, doc: /* Return width of CHAR when displayed in the current buffer. The width is measured by how many columns it occupies on the screen. @@ -315,21 +340,11 @@ usage: (char-width CHAR) */) (Lisp_Object ch) { - Lisp_Object disp; int c, width; - struct Lisp_Char_Table *dp = buffer_display_table (); CHECK_CHARACTER (ch); c = XINT (ch); - - /* Get the way the display table would display it. */ - disp = dp ? DISP_CHAR_VECTOR (dp, c) : Qnil; - - if (VECTORP (disp)) - width = sanitize_char_width (ASIZE (disp)); - else - width = CHAR_WIDTH (c); - + width = char_width (c, buffer_display_table ()); return make_number (width); } @@ -350,22 +365,9 @@ while (i_byte < len) { - int bytes, thiswidth; - Lisp_Object val; + int bytes; int c = STRING_CHAR_AND_LENGTH (str + i_byte, bytes); - - if (dp) - { - val = DISP_CHAR_VECTOR (dp, c); - if (VECTORP (val)) - thiswidth = sanitize_char_width (ASIZE (val)); - else - thiswidth = CHAR_WIDTH (c); - } - else - { - thiswidth = CHAR_WIDTH (c); - } + int thiswidth = char_width (c, dp); if (precision > 0 && (width + thiswidth > precision)) @@ -447,18 +449,7 @@ else c = str[i_byte], bytes = 1; chars = 1; - if (dp) - { - val = DISP_CHAR_VECTOR (dp, c); - if (VECTORP (val)) - thiswidth = sanitize_char_width (ASIZE (val)); - else - thiswidth = CHAR_WIDTH (c); - } - else - { - thiswidth = CHAR_WIDTH (c); - } + thiswidth = char_width (c, dp); } if (precision <= 0) From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 19 02:25:40 2012 Received: (at control) by debbugs.gnu.org; 19 Jan 2012 07:25:40 +0000 Received: from localhost ([127.0.0.1]:35062 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RnmNQ-0005nz-7k for submit@debbugs.gnu.org; Thu, 19 Jan 2012 02:25:40 -0500 Received: from fencepost.gnu.org ([140.186.70.10]:50842) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RnmNK-0005nn-Da for control@debbugs.gnu.org; Thu, 19 Jan 2012 02:25:38 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1RnmMB-0001Nk-UG for control@debbugs.gnu.org; Thu, 19 Jan 2012 02:24:24 -0500 Date: Thu, 19 Jan 2012 02:24:23 -0500 Message-Id: Subject: control message for bug 10368 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -4.2 (----) 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: -4.2 (----) close 10368 23.4 From unknown Fri Jun 20 07:23:02 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 16 Feb 2012 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