changeset 81868:622be87f6a99

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sat, 14 Jul 2007 18:31:40 +0000
parents 491408da0ec1
children d61dfaecdda7
files etc/NEWS
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS	Sat Jul 14 18:10:17 2007 +0000
+++ b/etc/NEWS	Sat Jul 14 18:31:40 2007 +0000
@@ -146,6 +146,16 @@
 
 * Lisp Changes in Emacs 23.1
 
++++ 
+** In `condition-case', a handler can specify "let the debugger run first".
+
+You do this by writing `debug' in the list of conditions to be handled,
+like this:
+
+    (condition-case nil
+	(foo bar)
+      ((debug error) nil))
+
 ** The `require-match' argument to `completing-read' accepts a new value
 `confirm-only'.