branch: externals/osm
commit 1236f0dd95f62e966400428a9098f9c708e704a0
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Fix process indicator in the mode line
---
osm.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/osm.el b/osm.el
index f55c5f0b74..d97fab726f 100644
--- a/osm.el
+++ b/osm.el
@@ -1111,7 +1111,7 @@ xmlns='http://www.w3.org/2000/svg'
xmlns:xlink='http://www.w3.org/1999/xlink'>
"Return queue info string."
(when osm--download-processes
(format "[%s/%s/%s]"
- (length osm--download-processes)
+ (cl-loop for (_ . p) in osm--download-processes sum (length p))
(length osm--download-active)
(length osm--download-queue))))