]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (do-after-load-evaluation): Fix thinko
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 28 Nov 2019 03:37:11 +0000 (22:37 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 28 Nov 2019 03:37:11 +0000 (22:37 -0500)
lisp/subr.el

index 7e8c4fc23cb5b736c5b7febd33eb528e48c1585e..c1614c2e03f58bfb1ba561944a105ac0dbe775a9 100644 (file)
@@ -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.