I wanted to get rid of this automatic “splash screen” that Emacs visits (called GNU Emacs). I added the following line to the .emacs file:
(add-hook 'after-init-hook' (kill-buffer "GNU Emacs"))
Well, this works, but I get the following warning message in the echo area:
"Invalid function: (kill-buffer" GNU Emacs ")
I do not see what is invalid. Somebody knows?
Thanks, Postscript I'm sure the best approach is to make Emacs just not visit GNU Emacs, but I did not understand how to do this (maybe something in the default.el file?)
source share