summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-21 11:54:25 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-04-21 11:54:25 +0200
commit8b121d3aa2a9f3250975d65839361c6404fcad28 (patch)
treee00b583499dce7c58f1c70d50658de4bd983ed84
parentc1ebb6d221914feeb2cf7c5fa642de91c638e2b5 (diff)
downloadorg-mode-8b121d3aa2a9f3250975d65839361c6404fcad28.tar.gz
org-agenda: Fix missing colons in agenda tags
* lisp/org-agenda.el (org-agenda-format-item): Fix missing colons in agenda tags. This regression was introduced in "Standardize tag regexps" commit. Reported-by: Samuel Wales <samologist@gmail.com> <http://lists.gnu.org/r/emacs-orgmode/2018-04/msg00321.html>
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 3aac9d8..5503cb6 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -6530,7 +6530,7 @@ Any match of REMOVE-RE will be removed from TXT."
(setq txt (replace-match "" t t txt))
(setq txt (replace-match
(concat (make-string (max (- 50 (length txt)) 1) ?\ )
- (match-string 2 txt))
+ (match-string 1 txt))
t t txt))))
(when remove-re