From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: debugging.texi Date: Thu, 9 Jun 2005 17:36:26 -0500 (CDT) Message-ID: <200506092236.j59MaQf01709@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1118356621 23105 80.91.229.2 (9 Jun 2005 22:37:01 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Jun 2005 22:37:01 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 10 00:37:00 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DgVdl-0002xd-Jt for ged-emacs-devel@m.gmane.org; Fri, 10 Jun 2005 00:36:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgVkl-00071Z-Uz for ged-emacs-devel@m.gmane.org; Thu, 09 Jun 2005 18:43:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DgVka-00070i-64 for emacs-devel@gnu.org; Thu, 09 Jun 2005 18:43:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DgVkY-0006zj-EZ for emacs-devel@gnu.org; Thu, 09 Jun 2005 18:43:46 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DgVkY-0006z4-Bc for emacs-devel@gnu.org; Thu, 09 Jun 2005 18:43:46 -0400 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DgVef-0004Tp-J4 for emacs-devel@gnu.org; Thu, 09 Jun 2005 18:37:41 -0400 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id j59MbPCK008680 for ; Thu, 9 Jun 2005 17:37:25 -0500 (CDT) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j59MaQf01709; Thu, 9 Jun 2005 17:36:26 -0500 (CDT) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org 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:38468 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:38468 I propose the following changes to debugging.texi. The current doc of eval-expression-debug-on-error gives the impression that the default value is nil, whereas it is t. I can install if desired. ===File ~/debugging.texi-diff=============================== *** debugging.texi 05 Mar 2005 12:12:17 -0600 1.29 --- debugging.texi 09 Jun 2005 16:49:10 -0500 *************** *** 118,125 **** @end defopt @defopt eval-expression-debug-on-error ! If you set this variable to a non-@code{nil} value, then ! @code{debug-on-error} will be set to @code{t} when evaluating with the command @code{eval-expression}. If @code{eval-expression-debug-on-error} is @code{nil}, then the value of @code{debug-on-error} is not changed. @xref{Lisp Eval,, Evaluating --- 118,125 ---- @end defopt @defopt eval-expression-debug-on-error ! If this variable has a non-@code{nil} value, then ! @code{debug-on-error} is set to @code{t} when evaluating with the command @code{eval-expression}. If @code{eval-expression-debug-on-error} is @code{nil}, then the value of @code{debug-on-error} is not changed. @xref{Lisp Eval,, Evaluating *************** *** 267,277 **** @end example @end deffn ! @deffn Command cancel-debug-on-entry function-name This function undoes the effect of @code{debug-on-entry} on @var{function-name}. When called interactively, it prompts for @var{function-name} in the minibuffer. If @var{function-name} is ! @code{nil} or the empty string, it cancels break-on-entry for all functions. Calling @code{cancel-debug-on-entry} does nothing to a function which is --- 267,277 ---- @end example @end deffn ! @deffn Command cancel-debug-on-entry &optional function-name This function undoes the effect of @code{debug-on-entry} on @var{function-name}. When called interactively, it prompts for @var{function-name} in the minibuffer. If @var{function-name} is ! omitted, @code{nil} or the empty string, it cancels break-on-entry for all functions. Calling @code{cancel-debug-on-entry} does nothing to a function which is ============================================================