diff options
author | Alan Pearce | 2013-10-05 11:50:26 +0100 |
---|---|---|
committer | Alan Pearce | 2013-10-05 11:51:16 +0100 |
commit | cf9e2160505c1346ff15f6c9f71741c9b715e385 (patch) | |
tree | eb139b9365e113d7a23b39e03336e4c182256816 | |
parent | 6a418f791a153951437596103c7695edae2474e9 (diff) | |
download | nixfiles-cf9e2160505c1346ff15f6c9f71741c9b715e385.tar.lz nixfiles-cf9e2160505c1346ff15f6c9f71741c9b715e385.tar.zst nixfiles-cf9e2160505c1346ff15f6c9f71741c9b715e385.zip |
Emacs: Switch back to auto-compile from auto-async-byte-compile
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index 618e718b..65f79fc3 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -1053,9 +1053,9 @@ Also returns nil if pid is nil." ;;;; Programming -(use-package auto-async-byte-compile +(use-package auto-compile :ensure t - :init (add-hook 'emacs-lisp-mode-hook #'auto-async-byte-compile-mode)) + :init (add-hook 'emacs-lisp-mode-hook #'auto-compile-on-save-mode)) (use-package cc-mode :defer t |