aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index f472efad52e..ef961046bcf 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1474,7 +1474,10 @@ process_quit_flag (void)
1474 If quit-flag is set to `kill-emacs' the SIGINT handler has received 1474 If quit-flag is set to `kill-emacs' the SIGINT handler has received
1475 a request to exit Emacs when it is safe to do. 1475 a request to exit Emacs when it is safe to do.
1476 1476
1477 When not quitting, process any pending signals. */ 1477 When not quitting, process any pending signals.
1478
1479 If you change this function, also adapt module_should_quit in
1480 emacs-module.c. */
1478 1481
1479void 1482void
1480maybe_quit (void) 1483maybe_quit (void)
@@ -2952,7 +2955,7 @@ funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
2952 } 2955 }
2953#ifdef HAVE_MODULES 2956#ifdef HAVE_MODULES
2954 else if (MODULE_FUNCTIONP (fun)) 2957 else if (MODULE_FUNCTIONP (fun))
2955 return funcall_module (XMODULE_FUNCTION (fun), nargs, arg_vector); 2958 return funcall_module (fun, nargs, arg_vector);
2956#endif 2959#endif
2957 else 2960 else
2958 emacs_abort (); 2961 emacs_abort ();