aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-07-14 18:31:40 +0000
committerRichard M. Stallman <[email protected]>2007-07-14 18:31:40 +0000
commit8d3719940eb01f6a63cfe2b6e05bb97b85627e3a (patch)
treea879b7ca49fb19e052d223ea3941cdf04b97b5c7
parentf8b7331d235756948f33d96a917a5844c480dd1d (diff)
*** empty log message ***
-rw-r--r--etc/NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2549282e2b..34e09f83fc 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -146,6 +146,16 @@ on the corresponding remote system.
* 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'.