;;; init-comp.el --- Customize native Elisp compilation -*- lexical-binding: t -*- ;;; Commentary: ;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Native-Compilation.html ;; https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/emacs-lisp/comp.el ;;; Code: (require 'comp) (setq native-comp-async-report-warnings-errors 'silent) (provide 'init-comp) ;;; init-comp.el ends here