branch: externals/org
commit e53572e13030889b436d6f7d9a10a7546142646f
Author: Bastien <[email protected]>
Commit: Bastien <[email protected]>
Fix code typo in 06c064e9
---
lisp/org-agenda.el | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index b45b855..ccd3c5f 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -7146,12 +7146,12 @@ The optional argument TYPE tells the agenda type."
(substring x 0 (match-end 1))
(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)))))))
+ (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)))
(defsubst org-cmp-values (a b property)