mirror of
https://github.com/protesilaos/dotfiles.git
synced 2026-09-10 07:16:20 -04:00
emacs: remove variable that no longer exists in Emacs
This commit is contained in:
parent
233ec940d2
commit
c80e9ffc20
|
|
@ -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-"))
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue