fix: obey the comp namespace change
Some of the comp functions were declared private.
This commit is contained in:
parent
9620bb45ac
commit
2729a3f7e3
1 changed files with 4 additions and 1 deletions
|
@ -208,7 +208,10 @@ list remains lean."
|
||||||
(cl-loop with previous = 0
|
(cl-loop with previous = 0
|
||||||
with timeout = 30
|
with timeout = 30
|
||||||
with timer = 0
|
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))
|
while (not (zerop pending))
|
||||||
if (/= previous pending) do
|
if (/= previous pending) do
|
||||||
(print! (start "\033[KNatively compiling %d files...\033[1A" pending))
|
(print! (start "\033[KNatively compiling %d files...\033[1A" pending))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue