From 08b2d53e48fc8f8081bfa5fe5465dc99dbb7407d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Engdeg=C3=A5rd?= Date: Mon, 15 Sep 2025 21:35:12 +0200 Subject: [PATCH] ; * src/lisp.h (enum handlertype): Comment accuracy. --- src/lisp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index fe942c917f0..1782b12e7fd 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -3825,7 +3825,7 @@ enum handlertype { CONDITION_CASE, /* Entry for 'condition-case'. 'tag_or_ch' holds the list of conditions. 'val' holds the retval during longjmp. */ - CATCHER_ALL, /* Wildcard which catches all 'throw's. + CATCHER_ALL, /* Wildcard that catches all throws and signals. 'tag_or_ch' is unused. 'val' holds the retval during longjmp. */ HANDLER_BIND, /* Entry for 'handler-bind'.