5

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?

Community
  • 1
  • 1
Wentao
  • 61
  • 1
  • 2
  • 2
    duplicate? http://stackoverflow.com/questions/744672/unable-to-hide-welcome-screen-in-emacs – Rohith Oct 06 '10 at 03:01

2 Answers2

18

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

;; no startup msg  
(setq inhibit-startup-message t)        ; Disable startup message 
Dirk Eddelbuettel
  • 360,940
  • 56
  • 644
  • 725
7

The following in your .emacs will do the trick.

(setq inhibit-startup-screen t)
Colin Cochrane
  • 2,565
  • 1
  • 19
  • 20