>From 00d7a2bab8c5077eae99760c5f62dd09f4c363a4 Mon Sep 17 00:00:00 2001 From: Tassilo Horn Date: Fri, 12 Feb 2010 20:27:49 +0100 Subject: [PATCH] Don't omit the first colon when fontifying tags. --- lisp/ChangeLog | 5 +++++ lisp/org-agenda.el | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 31f5fc0..998d541 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-02-12 Tassilo Horn + + * org-agenda.el (org-agenda-align-tags): Don't omit the first + colon when fontifying tags. + 2010-02-12 Carsten Dominik * org.el (org-get-location): Make sure the selection buffer is diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 21c605f..5a63e47 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -6376,7 +6376,7 @@ If FORCE-TAGS is non nil, the car of it returns the new tags." (goto-char (match-beginning 1)) (insert (org-add-props (make-string (max 1 (- c (current-column))) ?\ ) - (plist-put (text-properties-at (point)) 'face nil)))) + (plist-put (text-properties-at (1- (point))) 'face nil)))) (goto-char (point-min)) (org-font-lock-add-tag-faces (point-max))))) -- 1.6.6.1