[Emacs] Remove after make frame hook

This commit is contained in:
Ivan Malison 2016-11-30 15:20:05 -08:00
parent d19d7fcd02
commit 5b8b5e67f8
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -4756,7 +4756,9 @@ load-theme hook (See the heading below).
;; This is needed because you can't set the font or theme at daemon start-up.
;; (when (display-graphic-p) (imalison:appearance))
(add-hook 'after-init-hook 'imalison:appearance)
(add-hook 'after-make-frame-functions 'imalison:initial-setup-hook)
;; XXX: I think that after-init-hook is good enough
;; (add-hook 'after-make-frame-functions 'imalison:initial-setup-hook)
#+END_SRC
* Post Init Custom
#+BEGIN_SRC emacs-lisp