commit 55919b2ab79765605850600df9ef1ae49663aaee
parent 56bd5c762a6159d092cf8a153fe5e3e08a748339
Author: Ethan Long <ethandavidlong@gmail.com>
Date: Wed, 23 Aug 2023 16:28:23 +1000
Fixed another bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config.org b/config.org
@@ -63,7 +63,7 @@ Let's get rid of the autosave and backup crap that emacs puts into the active wo
(setq ethandl/autosave-file-directory (expand-file-name "autosaves/" user-emacs-directory))
(setq ethandl/backups-file-directory (expand-file-name "backups/" user-emacs-directory))
(custom-set-variables
- '(auto-save-file-name-transforms ((".*" ethandl/autosave-file-directory t)))
+ '(auto-save-file-name-transforms `((".*" ,ethandl/autosave-file-directory t)))
'(backup-directory-alist '((".*" . ethandl/backups-file-directory))))
;; create the autosave dir if necessary, since emacs won't.