aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs-module.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/emacs-module.c b/src/emacs-module.c
index 5aa8a881745..0bc1b6c384b 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -918,10 +918,12 @@ finalize_environment (struct emacs_env_private *env)
918/* Must be called after setting up a handler immediately before 918/* Must be called after setting up a handler immediately before
919 returning from the function. See the comments in lisp.h and the 919 returning from the function. See the comments in lisp.h and the
920 code in eval.c for details. The macros below arrange for this 920 code in eval.c for details. The macros below arrange for this
921 function to be called automatically. DUMMY is ignored. */ 921 function to be called automatically. PHANDLERLIST points to a word
922 containing the handler list, for sanity checking. */
922static void 923static void
923module_reset_handlerlist (struct handler *const *dummy) 924module_reset_handlerlist (struct handler *const *phandlerlist)
924{ 925{
926 eassert (handlerlist == *phandlerlist);
925 handlerlist = handlerlist->next; 927 handlerlist = handlerlist->next;
926} 928}
927 929