Move window-init from core-ui.el to init.el

This commit is contained in:
Henrik Lissner 2015-08-10 22:28:35 +02:00
parent 245b93b3ed
commit 8e87db6a9b
3 changed files with 15 additions and 17 deletions

View file

@ -179,5 +179,10 @@
(unless (server-running-p)
(server-start)))
(add-hook! after-init
(defadvice save-buffers-kill-emacs (around no-query-kill-emacs activate)
"Prevent annoying \"Active processes exist\" query when you quit Emacs."
(flet ((process-list ())) ad-do-it)))
(provide 'core)
;;; core.el ends here