From unknown Fri Sep 12 23:42:05 2025 X-Loop: help-debbugs@gnu.org Subject: bug#18368: HYBRID_MALLOC broke AIX build Resent-From: Paul Eggert Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 30 Aug 2014 22:52:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 18368 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 18368@debbugs.gnu.org Cc: Ken Brown X-Debbugs-Original-To: Emacs bug reports and feature requests Received: via spool by submit@debbugs.gnu.org id=B.140943908130402 (code B ref -1); Sat, 30 Aug 2014 22:52:01 +0000 Received: (at submit) by debbugs.gnu.org; 30 Aug 2014 22:51:21 +0000 Received: from localhost ([127.0.0.1]:54654 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNrUO-0007uH-9V for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33839) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNrUL-0007u3-G0 for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNrU6-00086b-A0 for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:12 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38966) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrU6-00086X-7O for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:02 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35555) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrTy-0003ZO-Ma for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:51:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNrTr-00085z-5y for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:50:54 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:43921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrTq-00085W-TL for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:50:47 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id AA87CA60013; Sat, 30 Aug 2014 15:50:39 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QDMy0NQCERLl; Sat, 30 Aug 2014 15:50:31 -0700 (PDT) Received: from [192.168.1.9] (pool-71-177-17-123.lsanca.dsl-w.verizon.net [71.177.17.123]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id EE14FA60002; Sat, 30 Aug 2014 15:50:30 -0700 (PDT) Message-ID: <54025536.7010803@cs.ucla.edu> Date: Sat, 30 Aug 2014 15:50:30 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -4.0 (----) The trunk's recent HYBRID_MALLOC changes broke the build on AIX. Here are the first couple of compile-time diagnostics: xlc -c -Demacs -I. -I. -I../lib -I../lib -g3 -O gmalloc.c "/usr/include/unistd.h", line 201.17: 1506-343 (S) Redeclaration of lseek64 differs from previous declaration on line 199 of "/usr/include/unistd.h". "/usr/include/unistd.h", line 201.17: 1506-050 (I) Return type "long long" in redeclaration is not compatible with the previous return type "long". The culprit is this part of gmalloc.c: /* If HYBRID_MALLOC is defined in config.h, then conf_post.h #defines malloc and friends as macros before including stdlib.h. In this file we will need the prototypes for the system malloc, so we must include stdlib.h before config.h. And we have to do this unconditionally, since HYBRID_MALLOC hasn't been defined yet. */ #include #include This doesn't work, as must come first for various reasons; I suspect the AIX breakage is just the tip of the iceberg. One possible fix is to declare the system malloc directly, if HYBRID_MALLOC is defined. Another one, which might be safer, is to modify config.h to capture the system malloc before it's redefined. Since AIX does not define HYBRID_MALLOC, I have temporarily worked around the problem on my AIX host by using this in gmalloc.c: #ifdef HYBRID_MALLOC #include #endif #include #include but I suspect this is not the right way to fix the problems on platforms that need HYBRID_MALLOC but have AIX-like problems with redefinitions. From unknown Fri Sep 12 23:42:05 2025 X-Loop: help-debbugs@gnu.org Subject: bug#18368: HYBRID_MALLOC broke AIX build Resent-From: Ken Brown Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 31 Aug 2014 01:43:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 18368 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Paul Eggert , 18368@debbugs.gnu.org Received: via spool by 18368-submit@debbugs.gnu.org id=B18368.140944933713608 (code B ref 18368); Sun, 31 Aug 2014 01:43:02 +0000 Received: (at 18368) by debbugs.gnu.org; 31 Aug 2014 01:42:17 +0000 Received: from localhost ([127.0.0.1]:54721 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNu9o-0003XP-Al for submit@debbugs.gnu.org; Sat, 30 Aug 2014 21:42:16 -0400 Received: from limerock01.mail.cornell.edu ([128.84.13.241]:55666) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNu9l-0003XA-T8 for 18368@debbugs.gnu.org; Sat, 30 Aug 2014 21:42:14 -0400 X-CornellRouted: This message has been Routed already. Received: from authusersmtp.mail.cornell.edu (granite3.serverfarm.cornell.edu [10.16.197.8]) by limerock01.mail.cornell.edu (8.14.4/8.14.4_cu) with ESMTP id s7V1g0S7011859; Sat, 30 Aug 2014 21:42:00 -0400 Received: from [192.168.1.4] (cpe-67-249-176-226.twcny.res.rr.com [67.249.176.226]) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.14.4/8.12.10) with ESMTP id s7V1fwC6025040 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Sat, 30 Aug 2014 21:41:59 -0400 Message-ID: <54027D65.8010607@cornell.edu> Date: Sat, 30 Aug 2014 21:41:57 -0400 From: Ken Brown User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 References: <54025536.7010803@cs.ucla.edu> In-Reply-To: <54025536.7010803@cs.ucla.edu> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.3 (--) On 8/30/2014 6:50 PM, Paul Eggert wrote: > The trunk's recent HYBRID_MALLOC changes broke the build on AIX. How's this: === modified file 'src/gmalloc.c' --- src/gmalloc.c 2014-08-28 14:48:02 +0000 +++ src/gmalloc.c 2014-08-31 01:29:41 +0000 @@ -19,13 +19,6 @@ The author may be reached (Email) at the address mike@ai.mit.edu, or (US mail) as Mike Haertel c/o Free Software Foundation. */ -/* If HYBRID_MALLOC is defined in config.h, then conf_post.h #defines - malloc and friends as macros before including stdlib.h. In this - file we will need the prototypes for the system malloc, so we must - include stdlib.h before config.h. And we have to do this - unconditionally, since HYBRID_MALLOC hasn't been defined yet. */ -#include - #include #if defined HAVE_PTHREAD && !defined HYBRID_MALLOC @@ -1725,6 +1718,17 @@ #undef aligned_alloc #undef free +/* Declare system malloc and friends. */ +extern void *malloc (size_t size); +extern void *realloc (void *ptr, size_t size); +extern void *calloc (size_t nmemb, size_t size); +extern void free (void *ptr); +#ifdef HAVE_ALIGNED_ALLOC +extern void *aligned_alloc (size_t alignment, size_t size); +#elif defined HAVE_POSIX_MEMALIGN +extern int posix_memalign (void **memptr, size_t alignment, size_t size); +#endif + /* See the comments near the beginning of this file for explanations of the following functions. */ From unknown Fri Sep 12 23:42:05 2025 X-Loop: help-debbugs@gnu.org Subject: bug#18368: HYBRID_MALLOC broke AIX build Resent-From: Paul Eggert Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 31 Aug 2014 02:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 18368 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Ken Brown , 18368@debbugs.gnu.org Received: via spool by 18368-submit@debbugs.gnu.org id=B18368.140945171817210 (code B ref 18368); Sun, 31 Aug 2014 02:22:02 +0000 Received: (at 18368) by debbugs.gnu.org; 31 Aug 2014 02:21:58 +0000 Received: from localhost ([127.0.0.1]:54728 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNumE-0004TV-5V for submit@debbugs.gnu.org; Sat, 30 Aug 2014 22:21:58 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:58467) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNumB-0004TF-I3 for 18368@debbugs.gnu.org; Sat, 30 Aug 2014 22:21:56 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 72947A60018; Sat, 30 Aug 2014 19:21:49 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X1AkU4CfTm2a; Sat, 30 Aug 2014 19:21:40 -0700 (PDT) Received: from [192.168.1.9] (pool-71-177-17-123.lsanca.dsl-w.verizon.net [71.177.17.123]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id CD9FEA60002; Sat, 30 Aug 2014 19:21:40 -0700 (PDT) Message-ID: <540286B4.2070401@cs.ucla.edu> Date: Sat, 30 Aug 2014 19:21:40 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 References: <54025536.7010803@cs.ucla.edu> <54027D65.8010607@cornell.edu> In-Reply-To: <54027D65.8010607@cornell.edu> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.3 (--) Ken Brown wrote: > How's this: Thanks, I verified that that patch works on AIX. From unknown Fri Sep 12 23:42:05 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.503 (Entity 5.503) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Paul Eggert Subject: bug#18368: closed (Re: bug#18368: HYBRID_MALLOC broke AIX build) Message-ID: References: <54028B8D.507@cornell.edu> <54025536.7010803@cs.ucla.edu> X-Gnu-PR-Message: they-closed 18368 X-Gnu-PR-Package: emacs Reply-To: 18368@debbugs.gnu.org Date: Sun, 31 Aug 2014 02:43:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1409452983-19225-1" This is a multi-part message in MIME format... ------------=_1409452983-19225-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #18368: HYBRID_MALLOC broke AIX build which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 18368@debbugs.gnu.org. --=20 18368: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D18368 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1409452983-19225-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 18368-done) by debbugs.gnu.org; 31 Aug 2014 02:42:42 +0000 Received: from localhost ([127.0.0.1]:54734 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNv6I-0004zX-0k for submit@debbugs.gnu.org; Sat, 30 Aug 2014 22:42:42 -0400 Received: from limerock03.mail.cornell.edu ([128.84.13.243]:60201) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNv6E-0004zH-6i for 18368-done@debbugs.gnu.org; Sat, 30 Aug 2014 22:42:39 -0400 X-CornellRouted: This message has been Routed already. Received: from authusersmtp.mail.cornell.edu (granite4.serverfarm.cornell.edu [10.16.197.9]) by limerock03.mail.cornell.edu (8.14.4/8.14.4_cu) with ESMTP id s7V2gPn9028757; Sat, 30 Aug 2014 22:42:25 -0400 Received: from [192.168.1.4] (cpe-67-249-176-226.twcny.res.rr.com [67.249.176.226]) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.14.4/8.12.10) with ESMTP id s7V2gNEe002675 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Sat, 30 Aug 2014 22:42:24 -0400 Message-ID: <54028B8D.507@cornell.edu> Date: Sat, 30 Aug 2014 22:42:21 -0400 From: Ken Brown User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Paul Eggert , 18368-done@debbugs.gnu.org Subject: Re: bug#18368: HYBRID_MALLOC broke AIX build References: <54025536.7010803@cs.ucla.edu> <54027D65.8010607@cornell.edu> <540286B4.2070401@cs.ucla.edu> In-Reply-To: <540286B4.2070401@cs.ucla.edu> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 18368-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.3 (--) Version: 24.5 On 8/30/2014 10:21 PM, Paul Eggert wrote: > Thanks, I verified that that patch works on AIX. I've installed the patch in the trunk as bzr revision 117787. Ken ------------=_1409452983-19225-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 30 Aug 2014 22:51:21 +0000 Received: from localhost ([127.0.0.1]:54654 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNrUO-0007uH-9V for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33839) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XNrUL-0007u3-G0 for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNrU6-00086b-A0 for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:12 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38966) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrU6-00086X-7O for submit@debbugs.gnu.org; Sat, 30 Aug 2014 18:51:02 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35555) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrTy-0003ZO-Ma for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:51:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XNrTr-00085z-5y for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:50:54 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:43921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XNrTq-00085W-TL for bug-gnu-emacs@gnu.org; Sat, 30 Aug 2014 18:50:47 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id AA87CA60013; Sat, 30 Aug 2014 15:50:39 -0700 (PDT) X-Virus-Scanned: amavisd-new at smtp.cs.ucla.edu Received: from smtp.cs.ucla.edu ([127.0.0.1]) by localhost (smtp.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QDMy0NQCERLl; Sat, 30 Aug 2014 15:50:31 -0700 (PDT) Received: from [192.168.1.9] (pool-71-177-17-123.lsanca.dsl-w.verizon.net [71.177.17.123]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id EE14FA60002; Sat, 30 Aug 2014 15:50:30 -0700 (PDT) Message-ID: <54025536.7010803@cs.ucla.edu> Date: Sat, 30 Aug 2014 15:50:30 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Emacs bug reports and feature requests Subject: HYBRID_MALLOC broke AIX build Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit Cc: Ken Brown X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -4.0 (----) The trunk's recent HYBRID_MALLOC changes broke the build on AIX. Here are the first couple of compile-time diagnostics: xlc -c -Demacs -I. -I. -I../lib -I../lib -g3 -O gmalloc.c "/usr/include/unistd.h", line 201.17: 1506-343 (S) Redeclaration of lseek64 differs from previous declaration on line 199 of "/usr/include/unistd.h". "/usr/include/unistd.h", line 201.17: 1506-050 (I) Return type "long long" in redeclaration is not compatible with the previous return type "long". The culprit is this part of gmalloc.c: /* If HYBRID_MALLOC is defined in config.h, then conf_post.h #defines malloc and friends as macros before including stdlib.h. In this file we will need the prototypes for the system malloc, so we must include stdlib.h before config.h. And we have to do this unconditionally, since HYBRID_MALLOC hasn't been defined yet. */ #include #include This doesn't work, as must come first for various reasons; I suspect the AIX breakage is just the tip of the iceberg. One possible fix is to declare the system malloc directly, if HYBRID_MALLOC is defined. Another one, which might be safer, is to modify config.h to capture the system malloc before it's redefined. Since AIX does not define HYBRID_MALLOC, I have temporarily worked around the problem on my AIX host by using this in gmalloc.c: #ifdef HYBRID_MALLOC #include #endif #include #include but I suspect this is not the right way to fix the problems on platforms that need HYBRID_MALLOC but have AIX-like problems with redefinitions. ------------=_1409452983-19225-1-- From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 04 12:35:32 2014 Received: (at control) by debbugs.gnu.org; 4 Oct 2014 16:35:32 +0000 Received: from localhost ([127.0.0.1]:33183 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIt-0002m9-8U for submit@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:31 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:60039) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIr-0002lz-Gi for control@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:29 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XaSIq-0005r2-MO; Sat, 04 Oct 2014 12:35:28 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21552.8656.554316.921175@gnu.org> Date: Sat, 4 Oct 2014 12:35:28 -0400 From: Glenn Morris To: GNU bug tracker automated control server Subject: Update Emacs archived fixed bugs for 24.5 version number change X-Debbugs-No-Ack: yes X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) unarchive 18304 fixed 18304 25.1 notfixed 18304 24.5 unarchive 12008 fixed 12008 25.1 notfixed 12008 24.5 unarchive 17110 fixed 17110 25.1 notfixed 17110 24.5 unarchive 17218 fixed 17218 25.1 notfixed 17218 24.5 unarchive 18222 fixed 18222 25.1 notfixed 18222 24.5 unarchive 18023 fixed 18023 25.1 notfixed 18023 24.5 unarchive 17225 fixed 17225 25.1 notfixed 17225 24.5 unarchive 16626 fixed 16626 25.1 notfixed 16626 24.5 unarchive 18326 fixed 18326 25.1 notfixed 18326 24.5 unarchive 18227 fixed 18227 25.1 notfixed 18227 24.5 unarchive 16328 fixed 16328 25.1 notfixed 16328 24.5 unarchive 17333 fixed 17333 25.1 notfixed 17333 24.5 unarchive 13837 fixed 13837 25.1 notfixed 13837 24.5 unarchive 17641 fixed 17641 25.1 notfixed 17641 24.5 unarchive 18341 fixed 18341 25.1 notfixed 18341 24.5 unarchive 18349 fixed 18349 25.1 notfixed 18349 24.5 unarchive 2151 fixed 2151 25.1 notfixed 2151 24.5 unarchive 5853 fixed 5853 25.1 notfixed 5853 24.5 unarchive 17857 fixed 17857 25.1 notfixed 17857 24.5 unarchive 17858 fixed 17858 25.1 notfixed 17858 24.5 unarchive 17859 fixed 17859 25.1 notfixed 17859 24.5 unarchive 17160 fixed 17160 25.1 notfixed 17160 24.5 unarchive 2263 fixed 2263 25.1 notfixed 2263 24.5 unarchive 18368 fixed 18368 25.1 notfixed 18368 24.5 unarchive 17772 fixed 17772 25.1 notfixed 17772 24.5 unarchive 17276 fixed 17276 25.1 notfixed 17276 24.5 unarchive 15991 fixed 15991 25.1 notfixed 15991 24.5 unarchive 17699 fixed 17699 25.1 notfixed 17699 24.5