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: breakpoint in eval.c Date: Thu, 22 Mar 2007 14:57:46 +0100 (CET) Message-ID: <25421215.509891174571866738.JavaMail.www@wwinf4005> 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 1174571897 11118 80.91.229.12 (22 Mar 2007 13:58:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2007 13:58:17 +0000 (UTC) To: "Emacs Help [help-gnu-emacs]" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 22 14:58:11 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 1HUNnr-00034l-8d for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2007 14:58:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUNpe-0000uA-3u for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2007 08:59:58 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HUNpP-0000pt-6u for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 09:59:43 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HUNpN-0000iC-3u for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 09:59:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUNpM-0000hh-Rn for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 08:59:40 -0500 Original-Received: from smtp1.voila.fr ([193.252.22.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HUNnZ-0000NH-0Z for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 09:57:49 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id C5A281C00223 for ; Thu, 22 Mar 2007 14:57:46 +0100 (CET) Original-Received: from wwinf4005 (wwinf4005 [172.22.157.32]) by mwinf4002.voila.fr (SMTP Server) with ESMTP id B84CA1C002A1 for ; Thu, 22 Mar 2007 14:57:46 +0100 (CET) X-ME-UUID: 20070322135746755.B84CA1C002A1@mwinf4002.voila.fr X-Originating-IP: [89.34.170.37] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| 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:42104 Archived-At: I put a breakpoint in Feval in eval.c on this line: args_left = original_args; numargs = Flength (args_left); CHECK_CONS_LIST (); <=<= HERE is the breakpoint In GDB I put the condition like this: (gdb) info breakpoints Num Type Disp Enb Address What 9 breakpoint keep y 0x08152b24 in Feval at eval.c:2266 breakpoint already hit 23715 times silent if numargs > 30 stop end continue Now I called in editor (+ 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0) C-x C-e. However, the debugger did not stop in the breakpoint. Can somebody explain me why please?