emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/notmuch-indicator b225981c47 20/36: Refine how spacing


From: ELPA Syncer
Subject: [elpa] externals/notmuch-indicator b225981c47 20/36: Refine how spacing is done
Date: Wed, 21 Sep 2022 00:59:21 -0400 (EDT)

branch: externals/notmuch-indicator
commit b225981c4739446b725df19584754e2b7c0882b2
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Refine how spacing is done
---
 notmuch-indicator.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/notmuch-indicator.el b/notmuch-indicator.el
index db654ac391..6031195288 100644
--- a/notmuch-indicator.el
+++ b/notmuch-indicator.el
@@ -143,22 +143,21 @@ option `notmuch-indicator-refresh-count'."
   (let ((count (shell-command-to-string (format "notmuch count %s" (plist-get 
properties :terms)))))
     (if (and (zerop (string-to-number count)) 
notmuch-indicator-hide-empty-counters)
         ""
-      (format "%s%s" (or (plist-get properties :label)  "") 
(replace-regexp-in-string "\n" " " count)))))
+      (format "%s%s " (or (plist-get properties :label)  "") 
(replace-regexp-in-string "\n" " " count)))))
 
 (defun notmuch-indicator--return-count ()
   "Parse `notmuch-indicator-args' and format them as single string."
   (mapconcat
    (lambda (props)
      (notmuch-indicator--format-output props))
-   notmuch-indicator-args
-   " "))
+   notmuch-indicator-args))
 
 (defvar notmuch-indicator--last-state nil
   "Internal variable used to store the indicator's state.")
 
 (defun notmuch-indicator--indicator ()
   "Prepare new mail count mode line indicator."
-  (let* ((count (concat (notmuch-indicator--return-count) " "))
+  (let* ((count (notmuch-indicator--return-count))
          (old-indicator notmuch-indicator--last-state))
     (when old-indicator
       (setq global-mode-string (delete old-indicator global-mode-string)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]