]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/emacs-module.c (module_reset_handlerlist): Fix macro conflict.
authorPo Lu <luangruo@yahoo.com>
Sun, 12 Mar 2023 02:39:56 +0000 (10:39 +0800)
committerPo Lu <luangruo@yahoo.com>
Sun, 12 Mar 2023 02:39:56 +0000 (10:39 +0800)
src/emacs-module.c

index 133a06f35b78587b0b5757d6ac3affa5bccad7f2..3d06ef0020a84cddcaa9c05eb9ab8e80421bf7ec 100644 (file)
@@ -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;
 }