From 980e52282d702cdf8d9ad6c03297191f6fa5d61c Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 11 Dec 2012 17:20:33 +0100 Subject: [PATCH] org-agenda.el (org-agenda-finalize): Fix order of link activation. * org-agenda.el (org-agenda-finalize): Fix order of link activation. --- lisp/org-agenda.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index a91700776..a2e919f59 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -3514,10 +3514,10 @@ generating a new one." (save-excursion (let ((inhibit-read-only t)) (goto-char (point-min)) - (while (org-activate-plain-links (point-max)) + (while (org-activate-bracket-links (point-max)) (add-text-properties (match-beginning 0) (match-end 0) '(face org-link))) - (while (org-activate-bracket-links (point-max)) + (while (org-activate-plain-links (point-max)) (add-text-properties (match-beginning 0) (match-end 0) '(face org-link))) (org-agenda-align-tags) -- 2.11.4.GIT