[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/android 7971b533a28 3/5: ; * src/emacs-module.c (module_reset_ha
From: |
Po Lu |
Subject: |
feature/android 7971b533a28 3/5: ; * src/emacs-module.c (module_reset_handlerlist): Fix macro conflict. |
Date: |
Sat, 11 Mar 2023 22:07:03 -0500 (EST) |
branch: feature/android
commit 7971b533a28053fa695ee8643ec4018793dbc7c6
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>
; * 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;
}