tweak: suppress defvaralias warnings
This commit is contained in:
parent
27a448b04b
commit
9c80b33b89
2 changed files with 7 additions and 0 deletions
|
@ -476,6 +476,12 @@ Otherwise, `en/disable-command' (in novice.el.gz) is hardcoded to write them to
|
|||
;; useful, and often come from third party packages.
|
||||
(setq ad-redefinition-action 'accept)
|
||||
|
||||
;; Ignore warnings about "existing variables being aliased". Otherwise the user
|
||||
;; gets very intrusive popup warnings about our (intentional) uses of
|
||||
;; defvaralias.
|
||||
(after! warnings
|
||||
(add-to-list 'warning-suppress-types '(defvaralias)))
|
||||
|
||||
;; Reduce debug output unless we've asked for it.
|
||||
(setq debug-on-error init-file-debug
|
||||
jka-compr-verbose init-file-debug)
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
init-file-debug
|
||||
jka-compr-verbose
|
||||
(message-log-max . 16384)
|
||||
(warning-suppress-types . nil)
|
||||
url-debug
|
||||
use-package-verbose)
|
||||
"A list of variable to toggle on `doom-debug-mode'.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue