From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 10 12:12:48 2016 Received: (at submit) by debbugs.gnu.org; 10 Jun 2016 16:12:48 +0000 Received: from localhost ([127.0.0.1]:36169 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBP3A-0004Wq-1T for submit@debbugs.gnu.org; Fri, 10 Jun 2016 12:12:48 -0400 Received: from eggs.gnu.org ([208.118.235.92]:43972) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBP37-0004Wd-Jt for submit@debbugs.gnu.org; Fri, 10 Jun 2016 12:12:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBP2x-0003dS-CN for submit@debbugs.gnu.org; Fri, 10 Jun 2016 12:12:40 -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]:43429) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBP2x-0003dL-9P for submit@debbugs.gnu.org; Fri, 10 Jun 2016 12:12:35 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBP2o-0003iQ-It for bug-gnu-emacs@gnu.org; Fri, 10 Jun 2016 12:12:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBP2g-0003c1-V5 for bug-gnu-emacs@gnu.org; Fri, 10 Jun 2016 12:12:26 -0400 Received: from limerock04.mail.cornell.edu ([128.84.13.244]:55322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBP2g-0003bv-QT for bug-gnu-emacs@gnu.org; Fri, 10 Jun 2016 12:12:18 -0400 X-CornellRouted: This message has been Routed already. Received: from authusersmtp.mail.cornell.edu (granite3.serverfarm.cornell.edu [10.16.197.8]) by limerock04.mail.cornell.edu (8.14.4/8.14.4_cu) with ESMTP id u5AGCBuK006800 for ; Fri, 10 Jun 2016 12:12:11 -0400 Received: from [192.168.1.5] (mta-68-175-148-36.twcny.rr.com [68.175.148.36] (may be forged)) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.14.4/8.12.10) with ESMTP id u5AGCAmo011820 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Fri, 10 Jun 2016 12:12:11 -0400 To: bug-gnu-emacs@gnu.org Subject: 25.0.94; dbus crashes on 32-bit Cygwin From: Ken Brown Message-ID: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> Date: Fri, 10 Jun 2016 12:12:17 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-PMX-Cornell-Gauge: Gauge=XXXXX X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.4 (----) X-Debbugs-Envelope-To: submit 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: -4.4 (----) The following elisp file, extracted from dbus-tests.el, causes a crash on 32-bit Cygwin unless emacs is built --with-wide-int. $ cat dbus-crash.el (require 'dbus) (setq output (shell-command-to-string "dbus-launch --sh-syntax")) (when (string-match "DBUS_SESSION_BUS_ADDRESS='\\(.+\\)';" output) (setq bus (match-string 1 output))) (dbus-init-bus bus) $ emacs -Q -l dbus-crash.el Fatal error 11: Segmentation faultSegmentation fault (core dumped) If there is already a session bus running before starting emacs, simply loading the dbus library is enough to elicit the crash. The problem is this line in Fdbus__init_bus in dbusbind.c: XSETFASTINT (val, (intptr_t) connection); Here 'connection' is a 32-bit pointer, which may be too big to be treated as an integer in Emacs. In principle this could happen on any 32-bit platform, but it is more likely to happen on Cygwin because the heap can be in high memory. The following gdb session illustrates this. (Note: For simplicity, I started a session bus before starting emacs, so that I only had to load dbus to get a crash.) $ gdb emacs GNU gdb (GDB) (Cygwin 7.10.1-1) 7.10.1 [...] Breakpoint 1 at 0x511474: file ../../emacs-25/src/emacs.c, line 354. Temporary breakpoint 2 at 0x530bc1: file ../../emacs-25/src/sysdep.c, line 915. (gdb) b Fdbus__init_bus Breakpoint 3 at 0x50b41d: file ../../emacs-25/src/dbusbind.c, line 1124. (gdb) r -Q Starting program: /home/kbrown/src/emacs/32build-emacs-25/src/emacs -Q [At this point I did M-x load-library RET dbus RET .] Breakpoint 3, Fdbus__init_bus (bus=816, private=0) at ../../emacs-25/src/dbusbind.c:1124 1124 XD_DBUS_VALIDATE_BUS_ADDRESS (bus); (gdb) p bus $1 = 816 (gdb) pr :system (gdb) c Continuing. Breakpoint 3, Fdbus__init_bus (bus=792, private=0) at ../../emacs-25/src/dbusbind.c:1124 1124 XD_DBUS_VALIDATE_BUS_ADDRESS (bus); (gdb) p bus $2 = 792 (gdb) pr :session (gdb) n [...] 1151 connection = dbus_bus_get (EQ (bus, QCdbus_system_bus) (gdb) 1159 if (dbus_error_is_set (&derror)) (gdb) p connection $3 = (DBusConnection *) 0x2007a960 (gdb) n [...] 1190 XSETFASTINT (val, (intptr_t) connection); (gdb) 1191 xd_registered_buses = Fcons (Fcons (bus, val), xd_registered_buses); (gdb) p/x val $5 = 0x801ea582 (gdb) pr -536368800 [At this point xd_registered_buses contains a bogus connection address for the session bus.] (gdb) c Continuing. Program received signal SIGSEGV, Segmentation fault. 0x67e2910d in dbus_connection_get_is_connected (connection=0xe007a960) at /usr/src/debug/dbus-1.10.8-2/dbus/dbus-connection.c:2979 The bogus value 0xe007a960 (instead of 0x2007a960) was retrieved from xd_registered_buses and caused the crash. I suspect that there is a simple solution, which involves storing the connection address in a Lisp Object of type other than integer, but I'll leave that to the experts. In GNU Emacs 25.0.94.1 (i686-pc-cygwin, GTK+ Version 3.18.9) of 2016-06-10 built on desktop-new Repository revision: 66d556b5187d768bbd233513b54dcb4beaa90c6d Windowing system distributor 'The Cygwin/X Project', version 11.0.11802000 Configured using: 'configure 'CFLAGS=-g -O0'' Configured features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND DBUS GCONF GSETTINGS NOTIFY ACL GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix From debbugs-submit-bounces@debbugs.gnu.org Fri Jun 10 17:11:20 2016 Received: (at 23741) by debbugs.gnu.org; 10 Jun 2016 21:11:20 +0000 Received: from localhost ([127.0.0.1]:36286 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBTi4-0006dS-K0 for submit@debbugs.gnu.org; Fri, 10 Jun 2016 17:11:20 -0400 Received: from limerock04.mail.cornell.edu ([128.84.13.244]:39444) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBTi2-0006dE-KD for 23741@debbugs.gnu.org; Fri, 10 Jun 2016 17:11:18 -0400 X-CornellRouted: This message has been Routed already. Received: from authusersmtp.mail.cornell.edu (granite4.serverfarm.cornell.edu [10.16.197.9]) by limerock04.mail.cornell.edu (8.14.4/8.14.4_cu) with ESMTP id u5ALBCtV009440 for <23741@debbugs.gnu.org>; Fri, 10 Jun 2016 17:11:13 -0400 Received: from [192.168.1.3] (mta-68-175-148-36.twcny.rr.com [68.175.148.36] (may be forged)) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.14.4/8.12.10) with ESMTP id u5ALBBlJ024460 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for <23741@debbugs.gnu.org>; Fri, 10 Jun 2016 17:11:12 -0400 Subject: Re: bug#23741: 25.0.94; dbus crashes on 32-bit Cygwin To: 23741@debbugs.gnu.org References: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> From: Ken Brown Message-ID: <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> Date: Fri, 10 Jun 2016 17:11:11 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-PMX-Cornell-Gauge: Gauge=XXXXX X-Spam-Score: -3.7 (---) X-Debbugs-Envelope-To: 23741 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.7 (---) On 6/10/2016 12:12 PM, Ken Brown wrote: > I suspect that there is a simple solution, which involves storing the connection address in a Lisp Object of type other than integer, but I'll leave that to the experts. The following seems to fix it: diff --git a/src/dbusbind.c b/src/dbusbind.c index d3a32c0..56bfd71 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -943,7 +943,7 @@ xd_get_connection_references (DBusConnection *connection) static DBusConnection* xd_lisp_dbus_to_dbus (Lisp_Object bus) { - return (DBusConnection *) (intptr_t) XFASTINT (bus); + return (DBusConnection *) XSAVE_POINTER (bus, 0); } /* Return D-Bus connection address. BUS is either a Lisp symbol, @@ -1187,7 +1187,7 @@ this connection to those buses. */) XD_SIGNAL1 (build_string ("Cannot add watch functions")); /* Add bus to list of registered buses. */ - XSETFASTINT (val, (intptr_t) connection); + val = make_save_ptr (connection); xd_registered_buses = Fcons (Fcons (bus, val), xd_registered_buses); /* Cleanup. */ Ken From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 11 03:34:25 2016 Received: (at 23741) by debbugs.gnu.org; 11 Jun 2016 07:34:25 +0000 Received: from localhost ([127.0.0.1]:36396 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBdR3-0003GT-2k for submit@debbugs.gnu.org; Sat, 11 Jun 2016 03:34:25 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60754) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBdR1-0003G7-Dw for 23741@debbugs.gnu.org; Sat, 11 Jun 2016 03:34:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bBdQq-000772-6f for 23741@debbugs.gnu.org; Sat, 11 Jun 2016 03:34:13 -0400 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_05,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46692) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bBdQq-00076s-3O; Sat, 11 Jun 2016 03:34:12 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1124 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1bBdQn-0006wm-Se; Sat, 11 Jun 2016 03:34:10 -0400 Date: Sat, 11 Jun 2016 10:34:55 +0300 Message-Id: <83a8isp49s.fsf@gnu.org> From: Eli Zaretskii To: Ken Brown In-reply-to: <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> (message from Ken Brown on Fri, 10 Jun 2016 17:11:11 -0400) Subject: Re: bug#23741: 25.0.94; dbus crashes on 32-bit Cygwin References: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -6.4 (------) X-Debbugs-Envelope-To: 23741 Cc: 23741@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: , Reply-To: Eli Zaretskii Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.4 (------) > From: Ken Brown > Date: Fri, 10 Jun 2016 17:11:11 -0400 > > On 6/10/2016 12:12 PM, Ken Brown wrote: > > I suspect that there is a simple solution, which involves storing the connection address in a Lisp Object of type other than integer, but I'll leave that to the experts. > > The following seems to fix it: > > diff --git a/src/dbusbind.c b/src/dbusbind.c > index d3a32c0..56bfd71 100644 > --- a/src/dbusbind.c > +++ b/src/dbusbind.c > @@ -943,7 +943,7 @@ xd_get_connection_references (DBusConnection *connection) > static DBusConnection* > xd_lisp_dbus_to_dbus (Lisp_Object bus) > { > - return (DBusConnection *) (intptr_t) XFASTINT (bus); > + return (DBusConnection *) XSAVE_POINTER (bus, 0); > } > > /* Return D-Bus connection address. BUS is either a Lisp symbol, > @@ -1187,7 +1187,7 @@ this connection to those buses. */) > XD_SIGNAL1 (build_string ("Cannot add watch functions")); > > /* Add bus to list of registered buses. */ > - XSETFASTINT (val, (intptr_t) connection); > + val = make_save_ptr (connection); > xd_registered_buses = Fcons (Fcons (bus, val), xd_registered_buses); > > /* Cleanup. */ Thanks, please push to the release branch. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 11 07:37:44 2016 Received: (at 23741) by debbugs.gnu.org; 11 Jun 2016 11:37:44 +0000 Received: from localhost ([127.0.0.1]:36456 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBhEV-0002JQ-LP for submit@debbugs.gnu.org; Sat, 11 Jun 2016 07:37:44 -0400 Received: from mout.gmx.net ([212.227.17.22]:53820) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBhET-0002J6-0J for 23741@debbugs.gnu.org; Sat, 11 Jun 2016 07:37:41 -0400 Received: from detlef.gmx.de ([93.209.74.94]) by mail.gmx.com (mrgmx103) with ESMTPSA (Nemesis) id 0Lh7M3-1bpN5M3ojX-00oTnn; Sat, 11 Jun 2016 13:37:28 +0200 From: Michael Albinus To: Ken Brown Subject: Re: bug#23741: 25.0.94; dbus crashes on 32-bit Cygwin References: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> Date: Sat, 11 Jun 2016 13:37:19 +0200 In-Reply-To: <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> (Ken Brown's message of "Fri, 10 Jun 2016 17:11:11 -0400") Message-ID: <87inxgnehc.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:iwGI6KztH4n70lFg03c5v87gDZU8GQugpeK1WzgdvMwD5+jB5eh /uvtTJmFwyAJjhsmstF7rWiTKuFUmkp3OY8AlIzDVrpG8b3KQSinKNO8LQcOaIGj7E76mDd 7rpoBejfRsnkOIQ2gX9dcDkOkaisCO6qvexjSnrTW/wLg6VWtOzbeLEzjpnx8AZNgpDygkV 6LavIOyPrdqcCNPpci8wA== X-UI-Out-Filterresults: notjunk:1;V01:K0:OSmTYGxVHMg=:IPGjVSh5xE/o+neJCtUJV6 8QZehu/JIshcBOCoXNHnZznkGXnjqbJTtFmNribJybA6TcZB6vJldcETwRLFThE7sQO5PNJAl MvaoFLuA4HEz9eJ/79xorDsGhnL85R3KsJhlTdKVt9pSM6SC9ZKha9UAZiEpWIcrY2fvui4Zy zAmfPtCt9XOfxoVYRgMw2BlsHCNdwr3XpxuBK8e7JiM1ld5QsEEykUjwfadZFY8/x54wjh49U 98PBJqkEJlxAK8npqTNffrhVBYMVXnp0jIBpZwugCpK1fmwsUC1fck6MWXT9ID7eMzEKYj4tP JRjgyKiucuIkw2sFwCPFIHI1pzSRlUW8SmywJxC0OWXZON9SsBb9y9YLYCCjJNrDDjqd7lwNl OFcETPA+0JQ4h3/PvC65/YqA3cLBz7KSkBOBh8OEVC0vU3lnVI7+2xgM3PNkBagPsn1xa6qx9 YfMomZ3p9R6JUjJYXg33c4pv50aXP+IjJzLUhF9Ur4fJ+62LzLXgV7D2GJkUQG38hgoAkVGMC POxSpZ0eMsXHx5dk287ufgQLVB7nCfsQr7HgFtdhvoJE0Azr9OApLE9CB5wRUz3Uj/oKUUz8q iM0sGXNEAuCsplF+SC9bspl0iH7bxbVzP0nXEjYqLSxogkTqNaIpF756nDSo62438L0BD6hfg SmKz4GhjkPnwpE2krEVuvEitiBqp/B/1h3NLZjt3cZt6Gu+Tuc4HQTlB3b6xKE0ujMpOlhb98 gfz+XMDWPzp6aFNDSruaw4gaQTw5BP6xvNC34u1avgrHiX8hCJzuhyVjXkxn8sxLMME5xjE0T KD/UjvZ X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 23741 Cc: 23741@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: -0.7 (/) Ken Brown writes: > On 6/10/2016 12:12 PM, Ken Brown wrote: >> I suspect that there is a simple solution, which involves storing >> the connection address in a Lisp Object of type other than integer, >> but I'll leave that to the experts. > > The following seems to fix it: Looks good to me. dbus-tests.el passes successfully on Ubuntu 16.04 (64bit) and Ubuntu 12.04 (32bit). > Ken Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 11 08:35:04 2016 Received: (at 23741-done) by debbugs.gnu.org; 11 Jun 2016 12:35:04 +0000 Received: from localhost ([127.0.0.1]:36480 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBi80-0003ii-DI for submit@debbugs.gnu.org; Sat, 11 Jun 2016 08:35:04 -0400 Received: from limerock01.mail.cornell.edu ([128.84.13.241]:35033) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bBi7z-0003iC-Hf for 23741-done@debbugs.gnu.org; Sat, 11 Jun 2016 08:35:03 -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 u5BCYvZr013045; Sat, 11 Jun 2016 08:34:57 -0400 Received: from [192.168.1.3] (mta-68-175-148-36.twcny.rr.com [68.175.148.36] (may be forged)) (authenticated bits=0) by authusersmtp.mail.cornell.edu (8.14.4/8.12.10) with ESMTP id u5BCYtax031292 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Sat, 11 Jun 2016 08:34:56 -0400 Subject: Re: bug#23741: 25.0.94; dbus crashes on 32-bit Cygwin To: Eli Zaretskii References: <971fc596-ab09-6e36-3bb3-bba7aa68f906@cornell.edu> <41990ee3-dc02-cd46-3cf6-62414d70660c@cornell.edu> <83a8isp49s.fsf@gnu.org> From: Ken Brown Message-ID: <27a7daec-c87a-416e-c7e4-0158f565bc8b@cornell.edu> Date: Sat, 11 Jun 2016 08:34:53 -0400 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <83a8isp49s.fsf@gnu.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Cornell-Gauge: Gauge=XXXXX X-Spam-Score: -3.7 (---) X-Debbugs-Envelope-To: 23741-done Cc: 23741-done@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.7 (---) On 6/11/2016 3:34 AM, Eli Zaretskii wrote: > Thanks, please push to the release branch. Done, as commit 6921f4a. Closing. From unknown Sun Jun 15 13:00:31 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 10 Jul 2016 11:24:04 +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