diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-12-10 09:24:07 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-12-10 09:24:07 -0500 |
commit | 12926cef074c7e03aff5bedc987e2e546fc0e9c0 (patch) | |
tree | c20d40522f5867a440449bfcaed7a6bb2e9781f3 | |
parent | 8cbb7d87b57f4007ee54b1c8ee339e0ee8ed9cf0 (diff) |
emacs: Small syntax consistency tweak.
-rw-r--r-- | dotfiles/.emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el index f3310a9..9f974e0 100644 --- a/dotfiles/.emacs.d/init.el +++ b/dotfiles/.emacs.d/init.el @@ -66,7 +66,7 @@ ;; This config based on: https://amodernist.com/texts/emacs-guix.html (use-package buffer-env :config - (add-hook 'hack-local-variables-hook 'buffer-env-update) + (add-hook 'hack-local-variables-hook #'buffer-env-update) (add-hook 'comint-mode-hook #'hack-dir-local-variables-non-file-buffer) :custom (buffer-env-script-name '("guix.scm" "manifest.scm"))) |