From 2729a3f7e34bd3ff64df416141da381378e87b7b Mon Sep 17 00:00:00 2001 From: StrawberryTea Date: Thu, 30 May 2024 21:17:09 -0500 Subject: [PATCH] fix: obey the comp namespace change Some of the comp functions were declared private. --- lisp/cli/packages.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/cli/packages.el b/lisp/cli/packages.el index 4d0e4b29f..bc9ef51fa 100644 --- a/lisp/cli/packages.el +++ b/lisp/cli/packages.el @@ -208,7 +208,10 @@ list remains lean." (cl-loop with previous = 0 with timeout = 30 with timer = 0 - for pending = (+ (length comp-files-queue) (comp-async-runnings)) + for pending = (+ (length comp-files-queue) + (if (functionp 'comp--async-runnings) + (comp--async-runnings) + (comp-async-runnings))) while (not (zerop pending)) if (/= previous pending) do (print! (start "\033[KNatively compiling %d files...\033[1A" pending))