[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm b15dcb7d80 3/4: Fix order of format args in helm-loca
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm b15dcb7d80 3/4: Fix order of format args in helm-locate-update-mode-line |
Date: |
Sun, 8 Jun 2025 10:01:37 -0400 (EDT) |
branch: elpa/helm
commit b15dcb7d8098783ed861d44c525b4c29e50d06ab
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix order of format args in helm-locate-update-mode-line
---
helm-locate.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/helm-locate.el b/helm-locate.el
index 7e5aea0772..26721a171d 100644
--- a/helm-locate.el
+++ b/helm-locate.el
@@ -297,10 +297,10 @@ See also `helm-locate'."
(:eval (format "L%s" (helm-candidate-number-at-point))) " "
(:eval (propertize
(format "[%s process finished - (%s results)]"
+ ,process-name
(max (1- (count-lines
(point-min) (point-max)))
- 0)
- ,process-name)
+ 0))
'face 'helm-locate-finish))))
(force-mode-line-update)))