How to kill * GNU Emacs * buffer when emacs starts?

Possible duplicate:
Unable to hide welcome screen in Emacs

Is there a way to prevent the GNU Emacs buffer from appearing when emacs starts?

+4
source share
2 answers

I believe this in your ~/.emacs will do it

 ;; no startup msg (setq inhibit-startup-message t) ; Disable startup message 
+18
source

Below in your .emacs there will be a trick.

 (setq inhibit-startup-screen t) 
+7
source

All Articles