summaryrefslogtreecommitdiff
path: root/lispref/debugging.texi
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-07-17 04:54:04 +0000
committerKarl Heuer <kwzh@gnu.org>1996-07-17 04:54:04 +0000
commit1b6f9572f90900837d9889c8a9dc2b232f332acc (patch)
tree46ea7faeccb53b4d1ae68140fa8671e920338afb /lispref/debugging.texi
parente06ed9d0f62dcd68ecec07671ec5ba8a842bb73e (diff)
downloademacs-1b6f9572f90900837d9889c8a9dc2b232f332acc.tar.gz
Changes for Emacs 19.32.
Diffstat (limited to 'lispref/debugging.texi')
-rw-r--r--lispref/debugging.texi12
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
errors also can invoke the debugger. @xref{Processes}.
@end defopt
+@defopt debug-ignored-errors
+This variable specifies certain kinds of errors that should not enter
+the debugger. Its value is a list of error condition symbols and/or
+regular expressions. If the error has any of those condition symbols,
+or if the error message matches any of the regular expressions, then
+that error does not enter the debugger, regardless of the value of
+@code{debug-on-error}.
+
+The normal value of this variable lists several errors that happen often
+during editing but rarely result from bugs in Lisp programs.
+@end defopt
+
To debug an error that happens during loading of the @file{.emacs}
file, use the option @samp{-debug-init}, which binds
@code{debug-on-error} to @code{t} while @file{.emacs} is loaded and