From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.help Subject: Re: breakpoint in eval.c Date: Thu, 22 Mar 2007 15:43:08 +0100 Message-ID: References: <25421215.509891174571866738.JavaMail.www@wwinf4005> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1174574628 22494 80.91.229.12 (22 Mar 2007 14:43:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Mar 2007 14:43:48 +0000 (UTC) Cc: "Emacs Help \[help-gnu-emacs\]" To: alinsoar@voila.fr Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 22 15:43:36 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 1HUOVr-0006dA-EB for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2007 15:43:35 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUOXe-00088l-Kb for geh-help-gnu-emacs@m.gmane.org; Thu, 22 Mar 2007 09:45:26 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HUOXP-00087f-C7 for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 10:45:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HUOXN-000854-Mu for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 10:45:10 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HUOXN-000851-HG for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 09:45:09 -0500 Original-Received: from pfepc.post.tele.dk ([195.41.46.237]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HUOVZ-00048z-F0 for help-gnu-emacs@gnu.org; Thu, 22 Mar 2007 10:43:17 -0400 Original-Received: from kfs-l.imdomain.dk.cua.dk (unknown [80.165.4.124]) by pfepc.post.tele.dk (Postfix) with SMTP id BA0708A0058; Thu, 22 Mar 2007 15:43:14 +0100 (CET) In-Reply-To: <25421215.509891174571866738.JavaMail.www@wwinf4005> (A. Soare's message of "Thu\, 22 Mar 2007 14\:57\:46 +0100 \(CET\)") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.96 (gnu/linux) X-detected-kernel: Linux 2.6, seldom 2.4 (older, 4) 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:42106 Archived-At: A Soare writes: > I put a breakpoint in Feval in eval.c on this line: > > args_left = original_args; > numargs = Flength (args_left); > > breakpoint already hit 23715 times > silent > if numargs > 30 > stop > end > continue > > Now I called in editor > > However, the debugger did not stop in the breakpoint. > > Can somebody explain me why please? numargs is a Lisp_Object; to use it as an integer you must divide it by 8. or do: if numargs > 240 stop end -- Kim F. Storm http://www.cua.dk