Mercurial > hg > xemacs-beta
comparison man/lispref/debugging.texi @ 444:576fb035e263 r21-2-37
Import from CVS: tag r21-2-37
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:36:19 +0200 |
parents | 84b14dcb0985 |
children | 755ae5b97edb |
comparison
equal
deleted
inserted
replaced
443:a8296e22da4e | 444:576fb035e263 |
---|---|
1 @c -*-texinfo-*- | 1 @c -*-texinfo-*- |
2 @c This is part of the XEmacs Lisp Reference Manual. | 2 @c This is part of the XEmacs Lisp Reference Manual. |
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. |
4 @c See the file lispref.texi for copying conditions. | 4 @c See the file lispref.texi for copying conditions. |
5 @setfilename ../../info/debugging.info | 5 @setfilename ../../info/debugging.info |
6 @node Debugging, Read and Print, Byte Compilation, Top | 6 @node Debugging, Read and Print, Byte Compilation, Top |
7 @chapter Debugging Lisp Programs | 7 @chapter Debugging Lisp Programs |
8 | 8 |
230 (if (zerop n) 1 (* n (fact (1- n))))) | 230 (if (zerop n) 1 (* n (fact (1- n))))) |
231 @end group | 231 @end group |
232 @end example | 232 @end example |
233 @end deffn | 233 @end deffn |
234 | 234 |
235 @deffn Command cancel-debug-on-entry function-name | 235 @deffn Command cancel-debug-on-entry &optional function-name |
236 This function undoes the effect of @code{debug-on-entry} on | 236 This function undoes the effect of @code{debug-on-entry} on |
237 @var{function-name}. When called interactively, it prompts for | 237 @var{function-name}. When called interactively, it prompts for |
238 @var{function-name} in the minibuffer. If @var{function-name} is | 238 @var{function-name} in the minibuffer. If @var{function-name} is |
239 @code{nil} or the empty string, it cancels debugging for all functions. | 239 @code{nil} or the empty string, it cancels debugging for all functions. |
240 | 240 |