diff lispref/debugging.texi @ 15725:bf32c17c153b

Changes for Emacs 19.32.
author Karl Heuer <kwzh@gnu.org>
date Wed, 17 Jul 1996 04:54:04 +0000
parents a6eb5f12b0f3
children 66d807bdc5b4
line wrap: on
line diff
--- a/lispref/debugging.texi	Tue Jul 16 23:29:39 1996 +0000
+++ b/lispref/debugging.texi	Wed Jul 17 04:54:04 1996 +0000
@@ -95,6 +95,18 @@
 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