From: Richard M. Stallman Date: Sat, 14 Jul 2007 18:31:40 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-23.0.90~11913 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8d3719940eb01f6a63cfe2b6e05bb97b85627e3a;p=emacs.git *** empty log message *** --- 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. * 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'.