12 lines
378 B
EmacsLisp
Executable File
12 lines
378 B
EmacsLisp
Executable File
;;; -*- lexical-binding: t -*-
|
|
|
|
(setq
|
|
;; Log native-compiler warnings, but don't display the buffer. Most of the
|
|
;; warnings are "«symbol» is not known to be defined" which are typically
|
|
;; nothing worth concerning.
|
|
native-comp-async-report-warnings-errors 'silent
|
|
;; Scroll compilation buffer to follow output.
|
|
compilation-scroll-output t)
|
|
|
|
(provide 'syd/compilation)
|