mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 20:32:00 -08:00
* lisp/subr.el (with-demoted-errors): Distinguish symbols from strings.
This commit is contained in:
parent
ee9355dcc8
commit
7f0ea0ffc9
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2010-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* subr.el (with-demoted-errors): Distinguish symbols from strings.
|
||||
|
||||
* newcomment.el (comment-styles): Add docs to each style (bug#7509).
|
||||
Improve docstring.
|
||||
(comment-style): Use comment-styles's docs to describe values.
|
||||
|
|
|
|||
|
|
@ -2816,7 +2816,7 @@ but which should be robust in the unexpected case that an error is signaled."
|
|||
(let ((err (make-symbol "err")))
|
||||
`(condition-case-no-debug ,err
|
||||
(progn ,@body)
|
||||
(error (message "Error: %s" ,err) nil))))
|
||||
(error (message "Error: %S" ,err) nil))))
|
||||
|
||||
(defmacro combine-after-change-calls (&rest body)
|
||||
"Execute BODY, but don't call the after-change functions till the end.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue