From unknown Tue Sep 09 22:00:19 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#12036 <12036@debbugs.gnu.org> To: bug#12036 <12036@debbugs.gnu.org> Subject: Status: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available Reply-To: bug#12036 <12036@debbugs.gnu.org> Date: Wed, 10 Sep 2025 05:00:19 +0000 retitle 12036 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK = when macro information not available reassign 12036 emacs submitter 12036 Eli Zaretskii severity 12036 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 23 14:19:51 2012 Received: (at submit) by debbugs.gnu.org; 23 Jul 2012 18:19:51 +0000 Received: from localhost ([127.0.0.1]:33354 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1StNEV-0005bS-8V for submit@debbugs.gnu.org; Mon, 23 Jul 2012 14:19:51 -0400 Received: from eggs.gnu.org ([208.118.235.92]:53044) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1StNES-0005bK-W1 for submit@debbugs.gnu.org; Mon, 23 Jul 2012 14:19:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1StN84-0004UW-Qn for submit@debbugs.gnu.org; Mon, 23 Jul 2012 14:13: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=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:49527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1StN84-0004US-NW for submit@debbugs.gnu.org; Mon, 23 Jul 2012 14:13:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52693) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1StN7z-0004jC-Hr for bug-gnu-emacs@gnu.org; Mon, 23 Jul 2012 14:13:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1StN7x-0004Ri-16 for bug-gnu-emacs@gnu.org; Mon, 23 Jul 2012 14:13:07 -0400 Received: from mtaout22.012.net.il ([80.179.55.172]:47456) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1StN7w-0004Qr-GV for bug-gnu-emacs@gnu.org; Mon, 23 Jul 2012 14:13:04 -0400 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0M7M00100L9DD900@a-mtaout22.012.net.il> for bug-gnu-emacs@gnu.org; Mon, 23 Jul 2012 21:13:03 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7M001MML9Q1670@a-mtaout22.012.net.il> for bug-gnu-emacs@gnu.org; Mon, 23 Jul 2012 21:13:03 +0300 (IDT) Date: Mon, 23 Jul 2012 21:13:07 +0300 From: Eli Zaretskii Subject: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available X-012-Sender: halo1@inter.net.il To: bug-gnu-emacs@gnu.org Message-id: <83eho2z6q4.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: submit 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 (------) This bug report will be sent to the Bug-GNU-Emacs mailing list and the GNU bug tracker at debbugs.gnu.org. Please check that the From: line contains a valid email address. After a delay of up to one day, you should receive an acknowledgement at that address. Please write in English if possible, as the Emacs maintainers usually do not have translators for other languages. Please describe exactly what actions triggered the bug, and the precise symptoms of the bug. If you can, give a recipe starting from `emacs -Q': cd src gdb ./emacs (gdb) break decode_any_window (gdb) r -Q Breakpoint 3, decode_any_window (window=54912845) at window.c:149 149 if (NILP (window)) (gdb) n 152 CHECK_WINDOW (window); (gdb) p window $1 = 54912845 (gdb) xtype Lisp_Vectorlike No symbol "PVEC_TYPE_MASK" in current context. AFAICS, this happens because PVEC_TYPE_MASK is now a macro, whereas it was an enumerated type before. Therefore, any GDB commands that use it will not work unless the macro information is available to GDB, which only happens with some GCC switches. Please make these commands work without requiring -g3 again. If Emacs crashed, and you have the Emacs process in the gdb debugger, please include the output from the following gdb commands: `bt full' and `xbacktrace'. For information about debugging Emacs, please read the file d:/gnu/bzr/emacs/trunk/etc/DEBUG. In GNU Emacs 24.1.50.1 (i386-mingw-nt5.1.2600) of 2012-07-23 on HOME-C4E4A596F7 Bzr revision: 109194 eliz@gnu.org-20120723165720-qecdk4kza6po0al7 Windowing system distributor `Microsoft Corp.', version 5.1.2600 Configured using: `configure --with-gcc (3.4) --no-opt --enable-checking --cflags -Id:/usr/include/libxml2 -DGLYPH_DEBUG=1' Important settings: value of $EMACSDATA: D:/gnu/bzr/emacs/trunk/etc value of $EMACSDOC: D:/gnu/bzr/emacs/trunk/etc value of $EMACSLOADPATH: D:/gnu/bzr/emacs/trunk/lisp;D:/gnu/bzr/emacs/trunk/leim value of $EMACSPATH: D:/gnu/bzr/emacs/trunk/bin value of $LANG: ENU locale-coding-system: cp1255 default enable-multibyte-characters: t Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: M-x r e p o r t - e m Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Load-path shadows: None found. Features: (shadow sort gnus-util mail-extr emacsbug message format-spec rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils time-date tooltip ediff-hook vc-hooks lisp-float-type mwheel dos-w32 disp-table ls-lisp w32-win w32-vars tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer button faces cus-face files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process multi-tty emacs) From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 05:21:44 2012 Received: (at 12036-done) by debbugs.gnu.org; 26 Jul 2012 09:21:44 +0000 Received: from localhost ([127.0.0.1]:40322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuKGO-0005r1-6O for submit@debbugs.gnu.org; Thu, 26 Jul 2012 05:21:44 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:54935) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuKGM-0005qs-5q for 12036-done@debbugs.gnu.org; Thu, 26 Jul 2012 05:21:43 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 71AEA39E8014 for <12036-done@debbugs.gnu.org>; Thu, 26 Jul 2012 02:14:51 -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 ICvKxMcg7eRv for <12036-done@debbugs.gnu.org>; Thu, 26 Jul 2012 02:14:51 -0700 (PDT) Received: from [192.168.1.4] (pool-108-23-119-2.lsanca.fios.verizon.net [108.23.119.2]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 27EB139E8013 for <12036-done@debbugs.gnu.org>; Thu, 26 Jul 2012 02:14:51 -0700 (PDT) Message-ID: <50110A8E.7030101@cs.ucla.edu> Date: Thu, 26 Jul 2012 02:14:54 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: 12036-done@debbugs.gnu.org Subject: Re: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12036-done 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 (-) I ran into this problem independently and fixed it in trunk bzr 109213. I just now found this bug report and am marking it as done. From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 13:03:22 2012 Received: (at 12036) by debbugs.gnu.org; 26 Jul 2012 17:03:22 +0000 Received: from localhost ([127.0.0.1]:41325 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuRT8-00017g-Kq for submit@debbugs.gnu.org; Thu, 26 Jul 2012 13:03:22 -0400 Received: from mtaout22.012.net.il ([80.179.55.172]:48050) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuRT5-00017W-Rh for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 13:03:20 -0400 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0M7S002001OC6300@a-mtaout22.012.net.il> for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 19:56:26 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7S0013P1Q283K0@a-mtaout22.012.net.il>; Thu, 26 Jul 2012 19:56:26 +0300 (IDT) Date: Thu, 26 Jul 2012 19:56:31 +0300 From: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available In-reply-to: <50110A8E.7030101@cs.ucla.edu> X-012-Sender: halo1@inter.net.il To: Paul Eggert Message-id: <83sjcejwao.fsf@gnu.org> References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii 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.2 (-) > Date: Thu, 26 Jul 2012 02:14:54 -0700 > From: Paul Eggert > > I ran into this problem independently and fixed it in > trunk bzr 109213. I just now found this bug report and > am marking it as done. Thanks, but it doesn't appear to be entirely fixed. Somehow, the CHECK_LISP_OBJECT_TYPE thing is unknown to GDB: D:\gnu\bzr\emacs\trunk\src>gdb ./oo/i386/emacs.exe GNU gdb (GDB) 7.4.1 Copyright (C) 2012 Free Software Foundation, Inc. [...] .gdbinit:1197: Error in sourced command file: No symbol "CHECK_LISP_OBJECT_TYPE" in current context. <<<<<<<<<<<<<<<< (gdb) break decode_any_window Breakpoint 1 at 0x11de1b8: file window.c, line 149. (gdb) r -Q Starting program: D:\gnu\bzr\emacs\trunk\src/./oo/i386/emacs.exe -Q [New Thread 5748.0xa3c] Breakpoint 1, decode_any_window (window=54888269) at window.c:149 149 if (NILP (window)) (gdb) n 152 CHECK_WINDOW (window); (gdb) p window $1 = 54888269 (gdb) xtype No symbol "CHECK_LISP_OBJECT_TYPE" in current context. <<<<<<<<<<<<<<< From unknown Tue Sep 09 22:00:19 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Did not alter fixed versions and reopened. Date: Thu, 26 Jul 2012 17:15:01 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # Did not alter fixed versions and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 14:10:31 2012 Received: (at 12036) by debbugs.gnu.org; 26 Jul 2012 18:10:31 +0000 Received: from localhost ([127.0.0.1]:41389 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuSW6-0003SZ-NE for submit@debbugs.gnu.org; Thu, 26 Jul 2012 14:10:31 -0400 Received: from mtaout22.012.net.il ([80.179.55.172]:34487) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuSW4-0003SQ-8v for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 14:10:29 -0400 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0M7S002004QES400@a-mtaout22.012.net.il> for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 21:03:19 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7S002UZ4TI42F0@a-mtaout22.012.net.il>; Thu, 26 Jul 2012 21:03:19 +0300 (IDT) Date: Thu, 26 Jul 2012 21:03:24 +0300 From: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available In-reply-to: <83sjcejwao.fsf@gnu.org> X-012-Sender: halo1@inter.net.il To: eggert@cs.ucla.edu Message-id: <83obn2jt77.fsf@gnu.org> References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii 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.2 (-) > Date: Thu, 26 Jul 2012 19:56:31 +0300 > From: Eli Zaretskii > Cc: 12036@debbugs.gnu.org > > > Date: Thu, 26 Jul 2012 02:14:54 -0700 > > From: Paul Eggert > > > > I ran into this problem independently and fixed it in > > trunk bzr 109213. I just now found this bug report and > > am marking it as done. > > Thanks, but it doesn't appear to be entirely fixed. Somehow, the > CHECK_LISP_OBJECT_TYPE thing is unknown to GDB: > > D:\gnu\bzr\emacs\trunk\src>gdb ./oo/i386/emacs.exe > GNU gdb (GDB) 7.4.1 > Copyright (C) 2012 Free Software Foundation, Inc. > [...] > .gdbinit:1197: Error in sourced command file: > No symbol "CHECK_LISP_OBJECT_TYPE" in current context. <<<<<<<<<<<<<<<< > (gdb) break decode_any_window > Breakpoint 1 at 0x11de1b8: file window.c, line 149. > (gdb) r -Q > Starting program: D:\gnu\bzr\emacs\trunk\src/./oo/i386/emacs.exe -Q > [New Thread 5748.0xa3c] > > Breakpoint 1, decode_any_window (window=54888269) at window.c:149 > 149 if (NILP (window)) > (gdb) n > 152 CHECK_WINDOW (window); > (gdb) p window > $1 = 54888269 > (gdb) xtype > No symbol "CHECK_LISP_OBJECT_TYPE" in current context. <<<<<<<<<<<<<<< It looks like the enum values are known to GDB only if there's a variable which has that enum type. E.g., if I change the enum like this: enum { CHECK_LISP_OBJECT_TYPE = gdb_CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS = gdb_DATA_SEG_BITS, GCTYPEBITS = gdb_GCTYPEBITS, USE_LSB_TAG = gdb_USE_LSB_TAG } foo; then there's no problem with CHECK_LISP_OBJECT_TYPE. However, the next problem in line is with VALBITS: (gdb) break decode_any_window Breakpoint 3 at 0x11de1b8: file window.c, line 149. (gdb) r -Q Starting program: D:\gnu\bzr\emacs\trunk\src/./oo/i386/emacs.exe -Q [New Thread 5144.0xe24] Breakpoint 3, decode_any_window (window=54888269) at window.c:149 149 if (NILP (window)) (gdb) n 152 CHECK_WINDOW (window); (gdb) p window $1 = 54888269 (gdb) xtype No symbol "VALBITS" in current context. This is again because no variable uses this enum: enum { VALBITS = BITS_PER_EMACS_INT - GCTYPEBITS }; If I declare a variable with this enum, I get past VALBITS, but then bump into pvec_type: Breakpoint 3, decode_any_window (window=54888269) at window.c:149 149 if (NILP (window)) (gdb) n 152 CHECK_WINDOW (window); (gdb) p window $1 = 54888269 (gdb) xtype Lisp_Vectorlike No enum type named pvec_type. Etc., etc. The old code had real variables that used the enumerated types. From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 14:53:03 2012 Received: (at 12036) by debbugs.gnu.org; 26 Jul 2012 18:53:03 +0000 Received: from localhost ([127.0.0.1]:41477 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuTBG-0004Sk-RX for submit@debbugs.gnu.org; Thu, 26 Jul 2012 14:53:03 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:50463) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuTBF-0004SL-6A for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 14:53:02 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 3AD24A60003; Thu, 26 Jul 2012 11:46:08 -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 YIrLde-NfyxW; Thu, 26 Jul 2012 11:46:07 -0700 (PDT) Received: from [192.168.1.4] (pool-108-23-119-2.lsanca.fios.verizon.net [108.23.119.2]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 8EA6AA60002; Thu, 26 Jul 2012 11:46:07 -0700 (PDT) Message-ID: <50119070.8090101@cs.ucla.edu> Date: Thu, 26 Jul 2012 11:46:08 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> In-Reply-To: <83obn2jt77.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@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 (-) Thanks, I didn't run into those problems since I tested by debugging when the symbols happened to be in scope. I reproduced some of the problems and installed a fix as trunk bzr 109219. However, there's one thing I couldn't reproduce: On 07/26/2012 11:03 AM, Eli Zaretskii wrote: > Breakpoint 3, decode_any_window (window=54888269) at window.c:149 > 149 if (NILP (window)) > (gdb) n > 152 CHECK_WINDOW (window); > (gdb) p window > $1 = 54888269 > (gdb) xtype > Lisp_Vectorlike > No enum type named pvec_type. I expect that I don't have this problem because the bug has been fixed in my tools (GCC 4.7.1 + GDB 7.4.1). I tried to work around the problem by putting this line into lisp.h: PUBLISH_TO_GDB ((enum pvec_type) 0); /* This also publishes PVEC_*. */ but I can't easily test this, since my tools don't have the problem. Could you please try it? And if it doesn't work, could you please try adding lines like this: PUBLISH_TO_GDB (PVEC_TYPE_MASK); for values like PVEC_TYPE_MASK that do not otherwise work for you? Thanks. From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 26 16:17:44 2012 Received: (at 12036) by debbugs.gnu.org; 26 Jul 2012 20:17:44 +0000 Received: from localhost ([127.0.0.1]:41677 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuUVD-0007EB-PB for submit@debbugs.gnu.org; Thu, 26 Jul 2012 16:17:44 -0400 Received: from mtaout20.012.net.il ([80.179.55.166]:45539) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SuUVB-0007E2-4C for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 16:17:42 -0400 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0M7S00J00ADR4N00@a-mtaout20.012.net.il> for 12036@debbugs.gnu.org; Thu, 26 Jul 2012 23:10:15 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7S00JA6AP22Q40@a-mtaout20.012.net.il>; Thu, 26 Jul 2012 23:10:14 +0300 (IDT) Date: Thu, 26 Jul 2012 23:10:19 +0300 From: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available In-reply-to: <50119070.8090101@cs.ucla.edu> X-012-Sender: halo1@inter.net.il To: Paul Eggert Message-id: <83ipdajnbo.fsf@gnu.org> References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii 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.2 (-) > Date: Thu, 26 Jul 2012 11:46:08 -0700 > From: Paul Eggert > CC: 12036@debbugs.gnu.org > > > (gdb) xtype > > Lisp_Vectorlike > > No enum type named pvec_type. > > I expect that I don't have this problem because the bug has been fixed > in my tools (GCC 4.7.1 + GDB 7.4.1). I tried to work around the problem > by putting this line into lisp.h: > > PUBLISH_TO_GDB ((enum pvec_type) 0); /* This also publishes PVEC_*. */ > > but I can't easily test this, since my tools don't have the problem. > Could you please try it? And if it doesn't work, could you > please try adding lines like this: > > PUBLISH_TO_GDB (PVEC_TYPE_MASK); > > for values like PVEC_TYPE_MASK that do not otherwise work for you? Unfortunately, with my ancient version of GCC, I don't even get past CHECK_LISP_OBJECT_TYPE in xgetptr: .gdbinit:1197: Error in sourced command file: No symbol "CHECK_LISP_OBJECT_TYPE" in current context. Looks like PUBLISH_TO_GDB is not doing the trick here. Anyway, with tricky macros such as PUBLISH_TO_GDB, I'd think that going back to using variables whose type is the enum would be better, don't you think? We could modify PUBLISH_TO_GDB to do that. From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 02:29:35 2012 Received: (at 12036) by debbugs.gnu.org; 27 Jul 2012 06:29:35 +0000 Received: from localhost ([127.0.0.1]:42685 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sue3L-0004J6-6u for submit@debbugs.gnu.org; Fri, 27 Jul 2012 02:29:35 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:48495) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sue3I-0004Iy-C0 for 12036@debbugs.gnu.org; Fri, 27 Jul 2012 02:29:33 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id DAB6739E8013; Thu, 26 Jul 2012 23:22:36 -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 YHLOypN31bIS; Thu, 26 Jul 2012 23:22:36 -0700 (PDT) Received: from [192.168.1.4] (pool-108-23-119-2.lsanca.fios.verizon.net [108.23.119.2]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 8278639E8008; Thu, 26 Jul 2012 23:22:36 -0700 (PDT) Message-ID: <501233B0.2010907@cs.ucla.edu> Date: Thu, 26 Jul 2012 23:22:40 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> <83ipdajnbo.fsf@gnu.org> In-Reply-To: <83ipdajnbo.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@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 (-) On 07/26/2012 01:10 PM, Eli Zaretskii wrote: > Anyway, with tricky macros such as PUBLISH_TO_GDB, I'd think that > going back to using variables whose type is the enum would be better, Yes, that's right. Unfortunately this can't be encapsulated as nicely as PUBLISH_TO_GDB can, so I reverted the PUBLISH_TO_GDB business and went back to the old way of making enums visible, in trunk bzr 109224. Please give it a try. From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 05:47:04 2012 Received: (at 12036) by debbugs.gnu.org; 27 Jul 2012 09:47:04 +0000 Received: from localhost ([127.0.0.1]:43016 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Suh8S-0001Ff-Ck for submit@debbugs.gnu.org; Fri, 27 Jul 2012 05:47:04 -0400 Received: from mtaout22.012.net.il ([80.179.55.172]:38910) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Suh8P-0001FF-G3 for 12036@debbugs.gnu.org; Fri, 27 Jul 2012 05:47:02 -0400 Received: from conversion-daemon.a-mtaout22.012.net.il by a-mtaout22.012.net.il (HyperSendmail v2007.08) id <0M7T00B00C1NG200@a-mtaout22.012.net.il> for 12036@debbugs.gnu.org; Fri, 27 Jul 2012 12:40:01 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout22.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7T00BWCC6PAN30@a-mtaout22.012.net.il>; Fri, 27 Jul 2012 12:40:01 +0300 (IDT) Date: Fri, 27 Jul 2012 12:40:07 +0300 From: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available In-reply-to: <501233B0.2010907@cs.ucla.edu> X-012-Sender: halo1@inter.net.il To: Paul Eggert Message-id: <837gtpk0eg.fsf@gnu.org> References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> <83ipdajnbo.fsf@gnu.org> <501233B0.2010907@cs.ucla.edu> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii 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.2 (-) > Date: Thu, 26 Jul 2012 23:22:40 -0700 > From: Paul Eggert > CC: 12036@debbugs.gnu.org > > On 07/26/2012 01:10 PM, Eli Zaretskii wrote: > > Anyway, with tricky macros such as PUBLISH_TO_GDB, I'd think that > > going back to using variables whose type is the enum would be better, > > Yes, that's right. Unfortunately this can't be encapsulated as nicely > as PUBLISH_TO_GDB can, so I reverted the PUBLISH_TO_GDB business > and went back to the old way of making enums visible, in > trunk bzr 109224. Please give it a try. Thanks, it seems to work now, at least in a few simple tests I ran here. However, there's still a small nuisance: (gdb) break decode_any_window Breakpoint 3 at 0x11de2a8: file window.c, line 149. (gdb) r -Q Starting program: D:\gnu\bzr\emacs\trunk\src/./oo/i386/emacs.exe -Q [New Thread 1452.0x15d4] Breakpoint 3, decode_any_window (window=54896461) at window.c:149 149 if (NILP (window)) (gdb) n 152 CHECK_WINDOW (window); (gdb) p window $1 = 54896461 (gdb) xtype Lisp_Vectorlike 262144 <<<<<<<<<<<<<<<<<<<<<< In Emacs 24.1, it does better: (gdb) p window $1 = 53340677 (gdb) xtype Lisp_Vectorlike PVEC_WINDOW I'm not sure if it will be better to go back to 24.1 behavior and display PVEC_WINDOW, or change .gdbinit to say something more explicit and human-readable here, such as "window" (and similarly for other vector-like types). From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 27 16:58:30 2012 Received: (at 12036) by debbugs.gnu.org; 27 Jul 2012 20:58:30 +0000 Received: from localhost ([127.0.0.1]:44745 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SurcE-0000lp-5q for submit@debbugs.gnu.org; Fri, 27 Jul 2012 16:58:30 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:52539) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SurcC-0000li-FP for 12036@debbugs.gnu.org; Fri, 27 Jul 2012 16:58:29 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id 6671D39E8014; Fri, 27 Jul 2012 13:51:29 -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 wdsxZeyP7e4I; Fri, 27 Jul 2012 13:51:29 -0700 (PDT) Received: from [192.168.1.4] (pool-108-23-119-2.lsanca.fios.verizon.net [108.23.119.2]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 09C1239E800D; Fri, 27 Jul 2012 13:51:29 -0700 (PDT) Message-ID: <5012FF52.6090809@cs.ucla.edu> Date: Fri, 27 Jul 2012 13:51:30 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> <83ipdajnbo.fsf@gnu.org> <501233B0.2010907@cs.ucla.edu> <837gtpk0eg.fsf@gnu.org> In-Reply-To: <837gtpk0eg.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@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 (-) On 07/27/2012 02:40 AM, Eli Zaretskii wrote: > I'm not sure if it will be better to go back to 24.1 behavior and > display PVEC_WINDOW That's easier; all we need to do is fix .gdbinit to reflect the pvec_type changes that were installed on July 4. I did that, as trunk bzr 109240; please give it a try. From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 28 03:37:10 2012 Received: (at 12036) by debbugs.gnu.org; 28 Jul 2012 07:37:10 +0000 Received: from localhost ([127.0.0.1]:45669 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv1aH-0008RL-UK for submit@debbugs.gnu.org; Sat, 28 Jul 2012 03:37:10 -0400 Received: from mtaout20.012.net.il ([80.179.55.166]:54032) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv1aF-0008RC-5Z for 12036@debbugs.gnu.org; Sat, 28 Jul 2012 03:37:08 -0400 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0M7V00E000TXWM00@a-mtaout20.012.net.il> for 12036@debbugs.gnu.org; Sat, 28 Jul 2012 10:30:05 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.210.75]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0M7V00EFP0U4L430@a-mtaout20.012.net.il>; Sat, 28 Jul 2012 10:30:05 +0300 (IDT) Date: Sat, 28 Jul 2012 10:30:13 +0300 From: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available In-reply-to: <5012FF52.6090809@cs.ucla.edu> X-012-Sender: halo1@inter.net.il To: Paul Eggert Message-id: <83ipd8ibqy.fsf@gnu.org> References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> <83ipdajnbo.fsf@gnu.org> <501233B0.2010907@cs.ucla.edu> <837gtpk0eg.fsf@gnu.org> <5012FF52.6090809@cs.ucla.edu> X-Spam-Score: -1.2 (-) X-Debbugs-Envelope-To: 12036 Cc: 12036@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Eli Zaretskii 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.2 (-) > Date: Fri, 27 Jul 2012 13:51:30 -0700 > From: Paul Eggert > CC: 12036@debbugs.gnu.org > > On 07/27/2012 02:40 AM, Eli Zaretskii wrote: > > I'm not sure if it will be better to go back to 24.1 behavior and > > display PVEC_WINDOW > > That's easier; all we need to do is fix .gdbinit to reflect > the pvec_type changes that were installed on July 4. > I did that, as trunk bzr 109240; please give it a try. Thanks, it works fine now. From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 28 06:52:29 2012 Received: (at control) by debbugs.gnu.org; 28 Jul 2012 10:52:30 +0000 Received: from localhost ([127.0.0.1]:45939 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv4dJ-0004Sg-6m for submit@debbugs.gnu.org; Sat, 28 Jul 2012 06:52:29 -0400 Received: from mail-pb0-f44.google.com ([209.85.160.44]:46016) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv4dG-0004SY-IB for control@debbugs.gnu.org; Sat, 28 Jul 2012 06:52:27 -0400 Received: by pbcwy7 with SMTP id wy7so6577319pbc.3 for ; Sat, 28 Jul 2012 03:45:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:mime-version:content-type; bh=M6UMJrM+TEz6yQnQMYWoPvC1K+TLufvBm3AOzb0Kcpc=; b=lf/4saiLkZdwcQr1M8SBvoyt16PZvlMqAzVff7jxUE98AsIXqSWc9lqAWvAYsKhkJP 1udzs8q0i+YibCnW74+TQhraZeWxS9Ug09e6MmhW7TAWV7GnyDWIrKaoHgWg2n9S5HEm egiSRyBhERn6Mol4JWE5m4PtTxEXfIuPP6fO2gQSikIrKMdpE56TK8vH/npnc99wuUYv +v/eYJ584S3QbBtBJb1PDjXxugWd95ClAf9GFjyXeI5nl5CL8I2UntHnfBT8oR5VdgG7 1+hUlgi7VUyA3Pnlwj1LsHOpHD8vVz3MmiooQPiyqajcvAyEeNEZuo4IgbbsUNF/7v9o uifQ== Received: by 10.68.219.162 with SMTP id pp2mr20441074pbc.85.1343472324372; Sat, 28 Jul 2012 03:45:24 -0700 (PDT) Received: from ulysses (cm162.gamma80.maxonline.com.sg. [202.156.80.162]) by mx.google.com with ESMTPS id sh3sm3775453pbc.16.2012.07.28.03.45.22 (version=SSLv3 cipher=OTHER); Sat, 28 Jul 2012 03:45:23 -0700 (PDT) From: Chong Yidong To: control@debbugs.gnu.org Subject: close 12036 Date: Sat, 28 Jul 2012 18:45:20 +0800 Message-ID: <87ehnwnozj.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.6 (--) 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: -2.6 (--) close 12036 thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 28 09:45:50 2012 Received: (at 12036-done) by debbugs.gnu.org; 28 Jul 2012 13:45:50 +0000 Received: from localhost ([127.0.0.1]:46213 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv7L4-0001bw-2A for submit@debbugs.gnu.org; Sat, 28 Jul 2012 09:45:50 -0400 Received: from smtp.cs.ucla.edu ([131.179.128.62]:52148) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Sv7L0-0001bo-PC for 12036-done@debbugs.gnu.org; Sat, 28 Jul 2012 09:45:47 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.cs.ucla.edu (Postfix) with ESMTP id B9187A60002; Sat, 28 Jul 2012 06:38:43 -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 l7R01uXo4R31; Sat, 28 Jul 2012 06:38:43 -0700 (PDT) Received: from [192.168.1.4] (pool-108-23-119-2.lsanca.fios.verizon.net [108.23.119.2]) by smtp.cs.ucla.edu (Postfix) with ESMTPSA id 58C1AA60001; Sat, 28 Jul 2012 06:38:43 -0700 (PDT) Message-ID: <5013EB69.4010804@cs.ucla.edu> Date: Sat, 28 Jul 2012 06:38:49 -0700 From: Paul Eggert Organization: UCLA Computer Science Department User-Agent: Mozilla/5.0 (X11; Linux i686; rv:14.0) Gecko/20120714 Thunderbird/14.0 MIME-Version: 1.0 To: Eli Zaretskii Subject: Re: bug#12036: 24.1.50; xvectype and xpr broken by change in PVEC_TYPE_MASK when macro information not available References: <83eho2z6q4.fsf@gnu.org> <50110A8E.7030101@cs.ucla.edu> <83sjcejwao.fsf@gnu.org> <83obn2jt77.fsf@gnu.org> <50119070.8090101@cs.ucla.edu> <83ipdajnbo.fsf@gnu.org> <501233B0.2010907@cs.ucla.edu> <837gtpk0eg.fsf@gnu.org> <5012FF52.6090809@cs.ucla.edu> <83ipd8ibqy.fsf@gnu.org> In-Reply-To: <83ipd8ibqy.fsf@gnu.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 12036-done Cc: 12036-done@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 (-) On 07/28/2012 12:30 AM, Eli Zaretskii wrote: > Thanks, it works fine now. Excellent! Marking this as done. From unknown Tue Sep 09 22:00:19 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, 26 Aug 2012 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