up vote 11 down vote favorite
2
share [g+] share [fb]

Every time I start Emacs I see a page of help text and a bunch of messages suggesting that I try the tutorial. How do I stop this from happening?

link|improve this question

feedback

3 Answers

Emacs has a couple of variables which inhibit these actions. If you edit your emacs control file (.emacs) and insert the following:

(setq inhibit-startup-echo-area-message t)
(setq inhibit-startup-message t)

that should solve your problem. They basically set the inhibit parameters to true to prevent the behavior you want to get rid of.

link|improve this answer
feedback
up vote 6 down vote accepted

Put the following in your .emacs:

(setq inhibit-startup-message t)
(setq inhibit-startup-echo-area-message t)
link|improve this answer
feedback

Put the following in your personal init file (ususally ~/.emacs.el):

(setq inhibit-startup-screen t)

You can also turn off the message "For information about GNU Emacs and the GNU system, type C-h C-a." in the echo with the variable inhibit-startup-echo-area-message, but it is not enough to set it to t; you must set it to your username. See the documentation for inhibit-startup-echo-area-message.

link|improve this answer
1  
Yeah, not even (setq inhibit-startup-echo-area-message (user-login-name)) works, ffs. – trojanfoe May 18 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.