comparison etc/NEWS @ 81868:622be87f6a99

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Sat, 14 Jul 2007 18:31:40 +0000
parents c8c299af082c
children f53f800079a7
comparison
equal deleted inserted replaced
81867:491408da0ec1 81868:622be87f6a99
144 ** The function `dired-call-process' has been removed. 144 ** The function `dired-call-process' has been removed.
145 145
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
152 You do this by writing `debug' in the list of conditions to be handled,
153 like 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
152 +++ 162 +++
153 ** The regexp form \(?<num>:<regexp>\) specifies the group number explicitly. 163 ** The regexp form \(?<num>:<regexp>\) specifies the group number explicitly.