From c80e9ffc20a4b299c1c17884fd4f37578b1bf6b0 Mon Sep 17 00:00:00 2001 From: Protesilaos Stavrou Date: Thu, 25 Sep 2025 20:42:26 +0300 Subject: [PATCH] emacs: remove variable that no longer exists in Emacs --- emacs/.emacs.d/init.el | 5 ++--- emacs/.emacs.d/prot-emacs.org | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) 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