summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helm-locate.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/helm-locate.el b/helm-locate.el
index c90263e5..ecba5cd5 100644
--- a/helm-locate.el
+++ b/helm-locate.el
@@ -266,14 +266,14 @@ See also `helm-locate'."
"Update mode-line with PROCESS-NAME status information."
(with-helm-window
(setq mode-line-format
- '(" " mode-line-buffer-identification " "
+ `(" " mode-line-buffer-identification " "
(:eval (format "L%s" (helm-candidate-number-at-point))) " "
(:eval (propertize
(format "[%s process finished - (%s results)]"
(max (1- (count-lines
(point-min) (point-max)))
0)
- process-name)
+ ,process-name)
'face 'helm-locate-finish))))
(force-mode-line-update)))