diff options
| author | Karl Heuer | 1996-07-17 04:54:04 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-07-17 04:54:04 +0000 |
| commit | 840797eed72533d2a46de3e808eb58609cdf4cf1 (patch) | |
| tree | 14decba5f7956280faf3661f9d62909b44f39844 /lispref/debugging.texi | |
| parent | 496110ef79d9e24767214dea03811097c69d7f65 (diff) | |
| download | emacs-840797eed72533d2a46de3e808eb58609cdf4cf1.tar.gz emacs-840797eed72533d2a46de3e808eb58609cdf4cf1.zip | |
Changes for Emacs 19.32.
Diffstat (limited to 'lispref/debugging.texi')
| -rw-r--r-- | lispref/debugging.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi index 6775323049d..b045d93b94e 100644 --- a/lispref/debugging.texi +++ b/lispref/debugging.texi | |||
| @@ -95,6 +95,18 @@ happen in process filter functions and sentinels. Therefore, these | |||
| 95 | errors also can invoke the debugger. @xref{Processes}. | 95 | errors also can invoke the debugger. @xref{Processes}. |
| 96 | @end defopt | 96 | @end defopt |
| 97 | 97 | ||
| 98 | @defopt debug-ignored-errors | ||
| 99 | This variable specifies certain kinds of errors that should not enter | ||
| 100 | the debugger. Its value is a list of error condition symbols and/or | ||
| 101 | regular expressions. If the error has any of those condition symbols, | ||
| 102 | or if the error message matches any of the regular expressions, then | ||
| 103 | that error does not enter the debugger, regardless of the value of | ||
| 104 | @code{debug-on-error}. | ||
| 105 | |||
| 106 | The normal value of this variable lists several errors that happen often | ||
| 107 | during editing but rarely result from bugs in Lisp programs. | ||
| 108 | @end defopt | ||
| 109 | |||
| 98 | To debug an error that happens during loading of the @file{.emacs} | 110 | To debug an error that happens during loading of the @file{.emacs} |
| 99 | file, use the option @samp{-debug-init}, which binds | 111 | file, use the option @samp{-debug-init}, which binds |
| 100 | @code{debug-on-error} to @code{t} while @file{.emacs} is loaded and | 112 | @code{debug-on-error} to @code{t} while @file{.emacs} is loaded and |