From d775ed822cf14d4c71dffab2f087e49000f69ff0 Mon Sep 17 00:00:00 2001 From: StrawberryTea Date: Tue, 1 Apr 2025 00:47:32 -0400 Subject: [PATCH] fix(corfu): void-variable local-map error Amend: #8262 --- modules/completion/corfu/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/corfu/config.el b/modules/completion/corfu/config.el index 17d3cb824..127ff5509 100644 --- a/modules/completion/corfu/config.el +++ b/modules/completion/corfu/config.el @@ -76,7 +76,7 @@ systems is active, Corfu should not enable its own completion." (or (bound-and-true-p mct--active) (bound-and-true-p vertico--input) (and (featurep 'auth-source) - (eq local-map read-passwd-map)) + (eq (current-local-map) read-passwd-map)) (and (featurep 'helm-core) (helm--alive-p)) (and (featurep 'ido)