summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-12-11 17:20:33 +0100
committerBastien Guerry <bzg@altern.org>2012-12-11 17:20:33 +0100
commit980e52282d702cdf8d9ad6c03297191f6fa5d61c (patch)
treefaa4a2722e85f0fb2c646a08fe924c210305b4a0
parent08e411109e3497bec27700145a43fc2d15c66008 (diff)
downloadorg-mode-980e52282d702cdf8d9ad6c03297191f6fa5d61c.tar.gz
org-agenda.el (org-agenda-finalize): Fix order of link activation.
* org-agenda.el (org-agenda-finalize): Fix order of link activation.
-rw-r--r--lisp/org-agenda.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index a917007..a2e919f 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)