]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorRichard M. Stallman <rms@gnu.org>
Sat, 14 Jul 2007 18:31:40 +0000 (18:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 14 Jul 2007 18:31:40 +0000 (18:31 +0000)
etc/NEWS

index 2549282e2b1fd9f5bbb311de413879c23f3f2da0..34e09f83fc3e332a9cc77701b8bb7f6fc83aedb2 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -146,6 +146,16 @@ on the corresponding remote system.
 \f
 * 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'.