mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
640de3fb86
This reverts commit b673fb12c1
.
13 lines
482 B
Org Mode
13 lines
482 B
Org Mode
:PROPERTIES:
|
|
:header-args:emacs-lisp: :comments link :results none
|
|
:ID: 9f801382-e771-4929-8eb3-f76afde9aba2
|
|
:END:
|
|
#+title: Native Compilation
|
|
#+filetags: emacs-load
|
|
|
|
When Emacs is native compiling, it'll constantly raised the warning buffer on every message, of which there are a lot. As far as I know, they are harmless and can be safely ignored. Therefore raised the minimum raising level to ~error~.
|
|
|
|
#+begin_src emacs-lisp
|
|
(setq warning-minimum-level :error)
|
|
#+end_src
|