diff options
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 2 |
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)) |