From 3a7be7bb4f0d8dc162597f0bbfa377a9d5f3f967 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 1 Feb 2021 02:45:45 -0500 Subject: [PATCH] Fix #4602, part 2! --- core/cli/packages.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli/packages.el b/core/cli/packages.el index 7fb74d35f..a2a1fb850 100644 --- a/core/cli/packages.el +++ b/core/cli/packages.el @@ -312,7 +312,7 @@ declaration) or dependency thereof that hasn't already been." (want-native-compile (or (eq build t) (memq 'native-compile build)))) - (when (eq (car build) :not) + (when (eq (car-safe build) :not) (setq want-byte-compile (not want-byte-compile) want-native-compile (not want-native-compile))) (unless (require 'comp nil t)