: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