From: Xu Chunyang <mail@xuchunyang.me>
To: emacs-orgmode@gnu.org
Subject: 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 [thread overview]
Message-ID: <m2tvrufyan.fsf@xuchunyang.me> (raw)
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
next reply other threads:[~2018-04-29 4:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-29 4:10 Xu Chunyang [this message]
2018-04-29 8:00 ` Bug: org-agenda-tags-column does not work anymore [9.1.12 (release_9.1.12-677-g4c13d0 @ /Users/xcy/src/org-mode/lisp/)] Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2tvrufyan.fsf@xuchunyang.me \
--to=mail@xuchunyang.me \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).