From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Debugging Emacs with gdba Date: Sat, 19 Nov 2005 12:40:48 +0200 Message-ID: References: <17277.19505.857559.358503@kahikatea.snap.net.nz> <17278.22984.984458.436182@kahikatea.snap.net.nz> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1132400488 6398 80.91.229.2 (19 Nov 2005 11:41:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 19 Nov 2005 11:41:28 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 19 12:41:27 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EdR5f-0004b4-2P for ged-emacs-devel@m.gmane.org; Sat, 19 Nov 2005 12:41:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EdR5e-0006k5-74 for ged-emacs-devel@m.gmane.org; Sat, 19 Nov 2005 06:41:06 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EdQ9J-0007Zw-3u for emacs-devel@gnu.org; Sat, 19 Nov 2005 05:40:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EdQ9H-0007ZY-9a for emacs-devel@gnu.org; Sat, 19 Nov 2005 05:40:48 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EdQ9G-0007ZR-Mp for emacs-devel@gnu.org; Sat, 19 Nov 2005 05:40:47 -0500 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EdQ9G-0004LZ-P2 for emacs-devel@gnu.org; Sat, 19 Nov 2005 05:40:46 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-83-130-251-47.inter.net.il [83.130.251.47]) by romy.inter.net.il (MOS 3.5.8-GR) with ESMTP id CZV21210 (AUTH halo1); Sat, 19 Nov 2005 12:40:43 +0200 (IST) Original-To: Nick Roberts In-reply-to: <17278.22984.984458.436182@kahikatea.snap.net.nz> (message from Nick Roberts on Sat, 19 Nov 2005 11:46:32 +1300) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:46254 Archived-At: > From: Nick Roberts > Date: Sat, 19 Nov 2005 11:46:32 +1300 > Cc: emacs-devel@gnu.org > > Is it OK to install this patch? > > Nick > > > *** lisp.h 16 Nov 2005 08:02:46 +1300 1.545 > --- lisp.h 19 Nov 2005 11:28:51 +1300 > *************** > *** 253,259 **** > /* If union type is not wanted, define Lisp_Object as just a number. */ > > #ifdef NO_UNION_TYPE > ! #define Lisp_Object EMACS_INT > #define LISP_MAKE_RVALUE(o) (0+(o)) > #endif /* NO_UNION_TYPE */ > > --- 253,259 ---- > /* If union type is not wanted, define Lisp_Object as just a number. */ > > #ifdef NO_UNION_TYPE > ! typedef EMACS_INT Lisp_Object; > #define LISP_MAKE_RVALUE(o) (0+(o)) > #endif /* NO_UNION_TYPE */ Fine with me, but please wait for Richard to give the definitive response. Meanwhile, I hope you did check that all the x... GDB commands defined by src/.gdbinit that work with Lisp data types encoded in Lisp_Object still work after this change (not that I expect them to stop working, but still...).