From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: A Soare Newsgroups: gmane.emacs.help Subject: Re: gdb doc Date: Fri, 23 Mar 2007 15:51:18 +0100 (CET) Message-ID: <6692358.654041174661478268.JavaMail.www@wwinf4203> Reply-To: alinsoar@voila.fr NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1174661513 7023 80.91.229.12 (23 Mar 2007 14:51:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 23 Mar 2007 14:51:53 +0000 (UTC) Cc: "Emacs Help \[help-gnu-emacs\]" To: Eli Zaretskii Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Mar 23 15:51:45 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HUl7E-0007YR-T5 for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Mar 2007 15:51:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUl99-0003Np-2u for geh-help-gnu-emacs@m.gmane.org; Fri, 23 Mar 2007 09:53:39 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HUl8u-0003L7-4s for help-gnu-emacs@gnu.org; Fri, 23 Mar 2007 10:53:24 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HUl8t-0003Kv-BY for help-gnu-emacs@gnu.org; Fri, 23 Mar 2007 10:53:23 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUl8t-0003Ks-7p for help-gnu-emacs@gnu.org; Fri, 23 Mar 2007 09:53:23 -0500 Original-Received: from smtp3.voila.fr ([193.252.22.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HUl6u-0006yO-8X; Fri, 23 Mar 2007 10:51:20 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4203.voila.fr (SMTP Server) with ESMTP id 4F8B21C00069; Fri, 23 Mar 2007 15:51:18 +0100 (CET) Original-Received: from wwinf4203 (wwinf4203 [10.232.2.30]) by mwinf4203.voila.fr (SMTP Server) with ESMTP id 43FCB1C00045; Fri, 23 Mar 2007 15:51:18 +0100 (CET) X-ME-UUID: 20070323145118278.43FCB1C00045@mwinf4203.voila.fr X-Originating-IP: [89.34.170.37] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-CC: |~| X-WUM-REPLYTO: |~| X-detected-kernel: Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42133 Archived-At: > and here I do not know how to write CONDITION in > > if > break No, you need to say "break Feval if ". > Can you help me a little mode to write the condition please? I don't have time to write and test a complete script, sorry. You will need to look in lisp.h for the definition of the XCAR macro, or in src/.gdbinit for the definition of `xcar', and use the same expressions in the condition. Something like the following (untested!): break Feval if ((struct Lisp_Cons *) ((gdb_use_union ? form.u.val : form & $valmask) | gdb_data_seg_bits))->car == Qplus Thanks a lot. Alin Soare.