From: Stefan Monnier Date: Thu, 28 Nov 2019 03:37:11 +0000 (-0500) Subject: * lisp/subr.el (do-after-load-evaluation): Fix thinko X-Git-Tag: emacs-27.0.90~499 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=25d4bf4fe0f0765f04404399b50cda91e827315e;p=emacs.git * lisp/subr.el (do-after-load-evaluation): Fix thinko --- 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." byte-compile-current-file byte-compile-root-dir))) (byte-compile-warn "%s" msg))) - (noninteractive (funcall fun)) ;; No timer will be run! + (noninteractive (funcall fun msg)) ;; No timer will be run! (t (run-with-idle-timer 0 nil fun msg)))))) ;; Finally, run any other hook.