tags:

views:

98

answers:

2

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?

+4  A: 

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

;; no startup msg  
(setq inhibit-startup-message t)        ; Disable startup message 
Dirk Eddelbuettel
inhibit-startup-message is an alias for inhibit-startup-screen
slu
+2  A: 

The following in your .emacs will do the trick.

(setq inhibit-startup-screen t)
Colin Cochrane