aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2549282e2b1..34e09f83fc3 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -146,6 +146,16 @@ on the corresponding remote system.
146 146
147* Lisp Changes in Emacs 23.1 147* Lisp Changes in Emacs 23.1
148 148
149+++
150** In `condition-case', a handler can specify "let the debugger run first".
151
152You do this by writing `debug' in the list of conditions to be handled,
153like this:
154
155 (condition-case nil
156 (foo bar)
157 ((debug error) nil))
158
149** The `require-match' argument to `completing-read' accepts a new value 159** The `require-match' argument to `completing-read' accepts a new value
150`confirm-only'. 160`confirm-only'.
151 161