summaryrefslogtreecommitdiff
path: root/lisp/startup.el
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2022-02-01 16:32:09 +0100
committerAndrea Corallo <akrl@sdf.org>2022-02-01 17:46:55 +0100
commit665ec8946df0e09dec703d7ee3909be6056141db (patch)
treefeda22204627a8cb1f7574c1f8f6affb93f41e54 /lisp/startup.el
parenta20f2b0ff9f8adcc4ca2f2be56109a7d72d11847 (diff)
downloademacs-665ec8946df0e09dec703d7ee3909be6056141db.tar.gz
emacs-665ec8946df0e09dec703d7ee3909be6056141db.tar.bz2
emacs-665ec8946df0e09dec703d7ee3909be6056141db.zip
* lisp/startup.el (startup--require-comp-safely): Fix typo in a92c6191b0
Diffstat (limited to 'lisp/startup.el')
-rw-r--r--lisp/startup.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index aa061251717..d838dd6827c 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -523,7 +523,7 @@ DIRS are relative."
(defvar comp--delayed-sources)
(defun startup--require-comp-safely ()
"Require the native compiler avoiding circular dependencies."
- (unless (featurep 'native-compile)
+ (when (featurep 'native-compile)
;; Require comp with `comp--compilable' set to nil to break
;; circularity.
(let ((comp--compilable nil))