diff options
| author | Luc Teirlinck | 2005-06-10 15:43:48 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-06-10 15:43:48 +0000 |
| commit | 9bd4c3ad3e747a187315a820651fa9c20e7ce552 (patch) | |
| tree | 9c8512d5e3779242072b370c30e8959a4fe92029 | |
| parent | 23d519e49c597f10b0a778cc340e233d74127c3d (diff) | |
| download | emacs-9bd4c3ad3e747a187315a820651fa9c20e7ce552.tar.gz emacs-9bd4c3ad3e747a187315a820651fa9c20e7ce552.zip | |
(Error Debugging): Minor rewording.
(Function Debugging): FUNCTION-NAME arg to `cancel-debug-on-entry' is optional.
| -rw-r--r-- | lispref/ChangeLog | 6 | ||||
| -rw-r--r-- | lispref/debugging.texi | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index b476dc4efde..e2694edd093 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-06-10 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * debugging.texi (Error Debugging): Minor rewording. | ||
| 4 | (Function Debugging): FUNCTION-NAME arg to `cancel-debug-on-entry' | ||
| 5 | is optional. | ||
| 6 | |||
| 1 | 2005-06-10 Lute Kamstra <lute@gnu.org> | 7 | 2005-06-10 Lute Kamstra <lute@gnu.org> |
| 2 | 8 | ||
| 3 | * elisp.texi: Use EMACSVER to refer to the current version of | 9 | * elisp.texi: Use EMACSVER to refer to the current version of |
diff --git a/lispref/debugging.texi b/lispref/debugging.texi index 07dfe18f283..ff9e90f7747 100644 --- a/lispref/debugging.texi +++ b/lispref/debugging.texi | |||
| @@ -118,8 +118,8 @@ the error. The easiest way is usually to set | |||
| 118 | @end defopt | 118 | @end defopt |
| 119 | 119 | ||
| 120 | @defopt eval-expression-debug-on-error | 120 | @defopt eval-expression-debug-on-error |
| 121 | If you set this variable to a non-@code{nil} value, then | 121 | If this variable has a non-@code{nil} value, then |
| 122 | @code{debug-on-error} will be set to @code{t} when evaluating with the | 122 | @code{debug-on-error} is set to @code{t} when evaluating with the |
| 123 | command @code{eval-expression}. If | 123 | command @code{eval-expression}. If |
| 124 | @code{eval-expression-debug-on-error} is @code{nil}, then the value of | 124 | @code{eval-expression-debug-on-error} is @code{nil}, then the value of |
| 125 | @code{debug-on-error} is not changed. @xref{Lisp Eval,, Evaluating | 125 | @code{debug-on-error} is not changed. @xref{Lisp Eval,, Evaluating |
| @@ -267,11 +267,11 @@ Debugger entered--entering a function: | |||
| 267 | @end example | 267 | @end example |
| 268 | @end deffn | 268 | @end deffn |
| 269 | 269 | ||
| 270 | @deffn Command cancel-debug-on-entry function-name | 270 | @deffn Command cancel-debug-on-entry &optional function-name |
| 271 | This function undoes the effect of @code{debug-on-entry} on | 271 | This function undoes the effect of @code{debug-on-entry} on |
| 272 | @var{function-name}. When called interactively, it prompts for | 272 | @var{function-name}. When called interactively, it prompts for |
| 273 | @var{function-name} in the minibuffer. If @var{function-name} is | 273 | @var{function-name} in the minibuffer. If @var{function-name} is |
| 274 | @code{nil} or the empty string, it cancels break-on-entry for all | 274 | omitted, @code{nil}, or the empty string, it cancels break-on-entry for all |
| 275 | functions. | 275 | functions. |
| 276 | 276 | ||
| 277 | Calling @code{cancel-debug-on-entry} does nothing to a function which is | 277 | Calling @code{cancel-debug-on-entry} does nothing to a function which is |