diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 3f38a153..c7e5e05f 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -79,10 +79,9 @@ before all other modules of my setup." (setq backup-inhibited nil) ; Not sure if needed, given `make-backup-files' (setq create-lockfiles nil) -;; Make native compilation silent and prune its cache. +;; Make native compilation silent. (when (native-comp-available-p) - (setq native-comp-async-report-warnings-errors 'silent) ; Emacs 28 with native compilation - (setq native-compile-prune-cache t)) ; Emacs 29 + (setq native-comp-async-report-warnings-errors 'silent)) ;; Disable the damn thing by making it disposable. (setq custom-file (make-temp-file "emacs-custom-")) diff --git a/emacs/.emacs.d/prot-emacs.org b/emacs/.emacs.d/prot-emacs.org index 12677b0b..e986afdd 100644 --- a/emacs/.emacs.d/prot-emacs.org +++ b/emacs/.emacs.d/prot-emacs.org @@ -763,10 +763,9 @@ uses the stop sign character, resulting in a long list of lines with red spots everywhere, as if we have totally broken Emacs. #+begin_src emacs-lisp :tangle "init.el" -;; Make native compilation silent and prune its cache. +;; Make native compilation silent. (when (native-comp-available-p) - (setq native-comp-async-report-warnings-errors 'silent) ; Emacs 28 with native compilation - (setq native-compile-prune-cache t)) ; Emacs 29 + (setq native-comp-async-report-warnings-errors 'silent)) #+end_src ** The =init.el= setting to send ~custom-file~ to oblivion