emacs: remove variable that no longer exists in Emacs

This commit is contained in:
Protesilaos Stavrou 2025-09-25 20:42:26 +03:00
parent 233ec940d2
commit c80e9ffc20
No known key found for this signature in database
GPG key ID: 99BD6459CD5CA3EA
2 changed files with 4 additions and 6 deletions

View file

@ -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-"))

View file

@ -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