From: Po Lu Date: Sun, 12 Mar 2023 02:39:56 +0000 (+0800) Subject: ; * src/emacs-module.c (module_reset_handlerlist): Fix macro conflict. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7971b533a28053fa695ee8643ec4018793dbc7c6;p=emacs.git ; * src/emacs-module.c (module_reset_handlerlist): Fix macro conflict. --- 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; }