Wednesday, February 24, 2010

Emacs: refrain from automatically making back-up files

Emacs automatically creates back-up files such as xxx.x~ .
The following code in .emacs or .emacs.el will not make any.

;;; *.~ とかのバックアップファイルを作らない
(setq make-backup-files nil)
;;; .#* とかのバックアップファイルを作らない
(setq auto-save-default nil)




No comments:

Post a Comment