aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov2008-02-12 23:41:19 +0000
committerJuri Linkov2008-02-12 23:41:19 +0000
commit54d22a6f1639ddee41eb86c65d9e1e30a1f20c6c (patch)
tree874e33d1955fd8d614a0eaf997a8e6132fa0179c /lisp
parent4222d0a4f34b32d303d9ce998964ef9da3cd21a8 (diff)
downloademacs-54d22a6f1639ddee41eb86c65d9e1e30a1f20c6c.tar.gz
emacs-54d22a6f1639ddee41eb86c65d9e1e30a1f20c6c.zip
(after-init-hook): Set inhibit-startup-screen to t
after reading the desktop.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/desktop.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/desktop.el b/lisp/desktop.el
index 540fe799059..19d066a8008 100644
--- a/lisp/desktop.el
+++ b/lisp/desktop.el
@@ -1292,7 +1292,9 @@ If there are no buffers left to create, kill the timer."
1292 (when (member key command-line-args) 1292 (when (member key command-line-args)
1293 (setq command-line-args (delete key command-line-args)) 1293 (setq command-line-args (delete key command-line-args))
1294 (setq desktop-save-mode nil))) 1294 (setq desktop-save-mode nil)))
1295 (when desktop-save-mode (desktop-read)))) 1295 (when desktop-save-mode
1296 (desktop-read)
1297 (setq inhibit-startup-screen t))))
1296 1298
1297(provide 'desktop) 1299(provide 'desktop)
1298 1300