aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2019-11-27 22:37:11 -0500
committerStefan Monnier2019-11-27 22:37:11 -0500
commit25d4bf4fe0f0765f04404399b50cda91e827315e (patch)
tree9d86042b663b8f45ef70baa486eb65fc3945b9c8
parent7921811726b878c21df99208cbfcfdb9634378b9 (diff)
downloademacs-25d4bf4fe0f0765f04404399b50cda91e827315e.tar.gz
emacs-25d4bf4fe0f0765f04404399b50cda91e827315e.zip
* lisp/subr.el (do-after-load-evaluation): Fix thinko
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 7e8c4fc23cb..c1614c2e03f 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -4623,7 +4623,7 @@ This function is called directly from the C code."
4623 byte-compile-current-file 4623 byte-compile-current-file
4624 byte-compile-root-dir))) 4624 byte-compile-root-dir)))
4625 (byte-compile-warn "%s" msg))) 4625 (byte-compile-warn "%s" msg)))
4626 (noninteractive (funcall fun)) ;; No timer will be run! 4626 (noninteractive (funcall fun msg)) ;; No timer will be run!
4627 (t (run-with-idle-timer 0 nil fun msg)))))) 4627 (t (run-with-idle-timer 0 nil fun msg))))))
4628 4628
4629 ;; Finally, run any other hook. 4629 ;; Finally, run any other hook.