aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorMichael Albinus2017-06-05 13:00:07 +0200
committerMichael Albinus2017-06-05 13:00:07 +0200
commit9f496c591d457b511a42c0f63e0d2d923cda0247 (patch)
tree86b550b9b3a8c1b5cb33bfdca82e470ab211bfac /src/eval.c
parent751d5920bed1a3af01fd5a31ce4eb7d8b6994151 (diff)
parent13e9493ea36df04e2c6b69e9b316d40c072ee88b (diff)
downloademacs-9f496c591d457b511a42c0f63e0d2d923cda0247.tar.gz
emacs-9f496c591d457b511a42c0f63e0d2d923cda0247.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
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 ();