emacs-orgmode
[Top][All Lists]
Advanced

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

[O] Bug: org-agenda-tags-column does not work anymore [9.1.12 (release_9


From: Xu Chunyang
Subject: [O] Bug: org-agenda-tags-column does not work anymore [9.1.12 (release_9.1.12-677-g4c13d0 @ /Users/xcy/src/org-mode/lisp/)]
Date: Sun, 29 Apr 2018 12:10:08 +0800

Hi,

I'm using latest Org mode built from latest git repository, the HEAD
is 4c13d0a1a870a450627ce1d8449a3b7204202250. I notice tags are no longer
aligned in *Org Agenda*.

It seems the issue is introduced by

    e87ebca2a755620a13a49cc748ba987b17d2d64d Use `org-tag-line-re'

and the following patch fixes it for me

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 342ea06b7..2ad09c1ad 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -9003,7 +9003,7 @@ If FORCE-TAGS is non nil, the car of it returns the new 
tags."
        l c)
     (save-excursion
       (goto-char (if line (line-beginning-position) (point-min)))
-      (while (re-search-forward org-tag-line-re (and line (line-end-position)) 
t)
+      (while (re-search-forward org-tag-group-re (and line 
(line-end-position)) t)
        (add-text-properties
         (match-beginning 1) (match-end 1)
         (list 'face (delq nil (let ((prop (get-text-property



reply via email to

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