Possible Duplicate:
Unable to hide welcome screen in Emacs
Is there a way I can prevent the GNU Emacs buffer from coming up when emacs starts?
Possible Duplicate:
Unable to hide welcome screen in Emacs
Is there a way I can prevent the GNU Emacs buffer from coming up when emacs starts?
I believe this in your ~/.emacs
will do that
;; no startup msg
(setq inhibit-startup-message t) ; Disable startup message
The following in your .emacs will do the trick.
(setq inhibit-startup-screen t)