如何在Emacs中更改暂存消息?
临时消息总是说:
;; This buffer is for notes you don't want to save, and for Lisp evaluation. ;; If you want to create a file, visit that file with Cx Cf, ;; then enter the text in that file's own buffer. 我如何删除这个,并使空白的临时消息默认?
 你可以自定义这个variables'initial-scratch-message是你想要的任何消息。 
 (setq initial-scratch-message "") 
对于Emacs 23,你可以这样做:
 (setq initial-scratch-message nil) 
从文档:“启动时暂存缓冲区中显示的初始消息,如果这是零,则不会显示消息。
您可以使用closures初始启animation面
 (setq inhibit-startup-message t) 
这似乎也删除暂存缓冲区中的初始消息。