Browse Source

org-agenda.el (org-agenda-finalize): Fix order of link activation.

* org-agenda.el (org-agenda-finalize): Fix order of link
activation.
Bastien Guerry 12 years ago
parent
commit
980e52282d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-agenda.el

+ 2 - 2
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)