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>
This commit is contained in:
Nicolas Goaziou 2018-04-21 11:54:25 +02:00
parent c1ebb6d221
commit 8b121d3aa2
1 changed files with 1 additions and 1 deletions

View File

@ -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