We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 201d22b commit ea02763Copy full SHA for ea02763
core/core-dumper.el
@@ -119,11 +119,11 @@ native compilation is not in effect."
119
(not (spacemacs/emacs-with-native-compilation-enabled-p))))
120
121
(defun spacemacs/emacs-with-native-compilation-enabled-p ()
122
- "Return non-nill if native compilation is enabled."
+ "Return non-nil if native compilation is enabled."
123
(and (featurep 'native-compile)
124
- (fboundp 'native-compile-available-p)
125
- (native-compile-available-p)
126
- (not (eql comp-speed -1))))
+ (fboundp 'native-comp-available-p)
+ (native-comp-available-p)
+ (not (eql native-comp-speed -1))))
127
128
(defun spacemacs/dump-modes (modes)
129
"Load given MODES in order to be dumped."
0 commit comments