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

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

[elpa] externals-release/org 06c064e 2/4: lisp/org-agenda.el: Fix bug in


From: ELPA Syncer
Subject: [elpa] externals-release/org 06c064e 2/4: lisp/org-agenda.el: Fix bug in `org-agenda-highlight-todo'
Date: Sat, 15 May 2021 04:57:13 -0400 (EDT)

branch: externals-release/org
commit 06c064e97c329bf8271ce71f00f39d5441ebd7c9
Author: Samim Pezeshki <p.samim@gmail.com>
Commit: Bastien <bzg@gnu.org>

    lisp/org-agenda.el: Fix bug in `org-agenda-highlight-todo'
    
    * lisp/org-agenda.el (org-agenda-highlight-todo): Skip formatting
    the to-do keyword when `org-agenda-todo-keyword-format' is the
    empty string.
    
    TINYCHANGE
---
 lisp/org-agenda.el | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 205225a..b7a5d40 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -7063,12 +7063,13 @@ The optional argument TYPE tells the agenda type."
            (setq x
                  (concat
                   (substring x 0 (match-end 1))
-                  (format org-agenda-todo-keyword-format
-                          (match-string 2 x))
-                  ;; Remove `display' property as the icon could leak
-                  ;; on the white space.
-                  (org-add-props " " (org-plist-delete (text-properties-at 0 x)
-                                                       'display))
+                   (unless (string-empty-p org-agenda-todo-keyword-format)
+                    (format org-agenda-todo-keyword-format
+                            (match-string 2 x))
+                    ;; Remove `display' property as the icon could leak
+                    ;; on the white space.
+                    (org-add-props " " (org-plist-delete (text-properties-at 0 
x)
+                                                         'display)))
                   (substring x (match-end 3)))))))
       x)))
 



reply via email to

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