]> git.eshelyaron.com Git - emacs.git/commit
New special form `handler-bind`
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 26 Dec 2023 03:32:17 +0000 (22:32 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 4 Jan 2024 21:32:53 +0000 (16:32 -0500)
commit5ba75e183c60aff50949587c21066e876dabfbda
treedb29f1ea2ef53d51ebb7ed1b8be999a664498f89
parent225710ba79c10b53b6ba320327ca31192ca72387
New special form `handler-bind`

AFAIK, this provides the same semantics as Common Lisp's `handler-bind`,
modulo the differences about how error objects and conditions are
represented.

* lisp/subr.el (handler-bind): New macro.

* src/eval.c (pop_handler): New function.
(Fhandler_Bind_1): New function.
(signal_or_quit): Handle new handlertypes `HANDLER` and `SKIP_CONDITIONS`.
(find_handler_clause): Simplify.
(syms_of_eval): Defsubr `Fhandler_bind_1`.

* doc/lispref/control.texi (Handling Errors): Add `handler-bind`.

* test/src/eval-tests.el (eval-tests--handler-bind): New test.

* lisp/emacs-lisp/lisp-mode.el (lisp-font-lock-keywords):
Move 'handler-bind' from CL-only to generic Lisp.
(handler-bind): Remove indentation setting, it now lives in the macro
definition.
doc/lispref/control.texi
etc/NEWS
lisp/emacs-lisp/lisp-mode.el
lisp/subr.el
src/eval.c
src/lisp.h
test/src/eval-tests.el