For some reason, my emacs do not back up files with a controlled version. Here are the settings in my .emacs
(defvar backup-dir (expand-file-name "~/.emacs.d/backup/")) (defvar autosave-dir (expand-file-name "~/.emacs.d/autosave/")) (setq backup-directory-alist (list (cons ".*" backup-dir))) (setq auto-save-list-file-prefix autosave-dir) (setq auto-save-file-name-transforms `((".*" ,autosave-dir t)))
I checked the backup for other files (e.g. .emacs itself), correctly created a backup for them. But he did not back up any files with a controlled version. Can someone tell me how to debug this?
source share