diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-10 16:06:02 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-10 16:06:02 +0200 |
commit | 4ea3fbc5ddff63d8849096954ad3ac25dc5e2be6 (patch) | |
tree | 1d9cd18c157038d0144ad7ce86cb728aa36f6159 /.config | |
parent | 52d3eb512bf084bfb3211f8c958b7e0af0969838 (diff) |
emacs: Perform check with ‘native-comp-available-p’
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 02cd070..05cb14d 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -7,7 +7,7 @@ (when (< emacs-major-version 29) (error "Emacs 29 or newer is required")) -(when (featurep 'native-compile) +(when (native-comp-available-p) (x-set native-comp-async-report-warnings-errors nil native-comp-verbose 0 |