From 7971b533a28053fa695ee8643ec4018793dbc7c6 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sun, 12 Mar 2023 10:39:56 +0800 Subject: [PATCH] ; * src/emacs-module.c (module_reset_handlerlist): Fix macro conflict. --- src/emacs-module.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emacs-module.c b/src/emacs-module.c index 133a06f35b7..3d06ef0020a 100644 --- a/src/emacs-module.c +++ b/src/emacs-module.c @@ -1620,13 +1620,13 @@ finalize_runtime_unwind (void *raw_ert) /* Must be called after setting up a handler immediately before returning from the function. See the comments in lisp.h and the code in eval.c for details. The macros below arrange for this - function to be called automatically. HANDLERLIST points to the + function to be called automatically. IHANDLERLIST points to the handler list. */ static void -module_reset_handlerlist (struct handler *handlerlist) +module_reset_handlerlist (struct handler *ihandlerlist) { - eassert (handlerlist == handlerlist); + eassert (handlerlist == ihandlerlist); handlerlist = handlerlist->next; } -- 2.39.2