]> git.eshelyaron.com Git - emacs.git/commitdiff
Load dumped.elc quietly.
authorKen Raeburn <raeburn@raeburn.org>
Sun, 5 Feb 2017 12:31:22 +0000 (07:31 -0500)
committerKen Raeburn <raeburn@raeburn.org>
Sat, 22 Jul 2017 08:36:21 +0000 (04:36 -0400)
* src/emacs.c (main): Pass additional arguments to load to silence
messages about loading dumped.elc.

src/emacs.c

index 8f461fe8a4b80afb06e235039836af5b0d2e5774..b7c0b47cb29070b78801136f438b4f04d8bc7ad1 100644 (file)
@@ -1677,7 +1677,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
         /* Unless next switch is -nl, load "dumped.elc" first thing.
           If it fails, we won't be able to run.  */
        {
-         Lisp_Object load = list2 (Qload, build_string ("../src/dumped.elc"));
+         Lisp_Object load = list4 (Qload,
+                                   build_string ("../src/dumped.elc"),
+                                   Qnil, Qt);
          /* XXX We need a way for Lisp to cause Emacs to exit, with
             an error message to stderr after restoring tty modes.  */
          /* (condition-case nil bodyform (file-missing (kill-emacs 42)))  */