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: Feval function definition. Date: Mon, 26 Mar 2007 13:20:05 +0200 (CEST) Message-ID: <10573228.639281174908005836.JavaMail.www@wwinf4004> 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 1174908029 23715 80.91.229.12 (26 Mar 2007 11:20:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Mar 2007 11:20:29 +0000 (UTC) To: "Emacs Help [help-gnu-emacs]" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 26 13:20:22 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 1HVnFO-0003Ln-3q for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Mar 2007 13:20:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HVnHc-0005X7-CP for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Mar 2007 06:22:40 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HVnHP-0005UD-Jc for help-gnu-emacs@gnu.org; Mon, 26 Mar 2007 07:22:27 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HVnHO-0005S1-6l for help-gnu-emacs@gnu.org; Mon, 26 Mar 2007 07:22:27 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HVnHO-0005Ru-0G for help-gnu-emacs@gnu.org; Mon, 26 Mar 2007 06:22:26 -0500 Original-Received: from smtp1.voila.fr ([193.252.22.174]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HVnF8-0000Xm-Qy for help-gnu-emacs@gnu.org; Mon, 26 Mar 2007 07:20:07 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf4008.voila.fr (SMTP Server) with ESMTP id E2D3DD8000CD for ; Mon, 26 Mar 2007 13:20:05 +0200 (CEST) Original-Received: from wwinf4004 (wwinf4004 [172.22.157.31]) by mwinf4008.voila.fr (SMTP Server) with ESMTP id CF836D8000C9 for ; Mon, 26 Mar 2007 13:20:05 +0200 (CEST) X-ME-UUID: 20070326112005850.CF836D8000C9@mwinf4008.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:42200 Archived-At: Suppose that I want to debug the evaluation of a non-byte-compiled function F , i.e. (symbol-function 'F) = (lambda (arg) "no comment" CODE etc). How can I set a breakpoint in Feval to see the uncompiled CODE? (exactly the code that I see with (symbol-function ...)) Thanks.