From 9271f75e66befe904ee0c2d37decf194f2534cd7 Mon Sep 17 00:00:00 2001 From: Park Zhou Date: Sun, 5 May 2024 16:14:51 +0800 Subject: [PATCH] magit-base: idiomatically use quote Signed-off-by: Park Zhou --- lisp/magit-base.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/magit-base.el b/lisp/magit-base.el index 3aabfff42d..2d6f7a0107 100644 --- a/lisp/magit-base.el +++ b/lisp/magit-base.el @@ -45,7 +45,7 @@ ;; GNU ELPA, for `seq-keep'. Unfortunately something else may already ;; have required `seq', before `package' had a chance to put the more ;; recent version earlier on the `load-path'. -(when (and (featurep' seq) +(when (and (featurep 'seq) (not (fboundp 'seq-keep))) (unload-feature 'seq 'force)) (require 'seq)