diff options
| author | Bastien Guerry <bzg@altern.org> | 2012-12-11 16:20:33 (GMT) |
|---|---|---|
| committer | Bastien Guerry <bzg@altern.org> | 2012-12-11 16:20:33 (GMT) |
| commit | 980e52282d702cdf8d9ad6c03297191f6fa5d61c (patch) | |
| tree | faa4a2722e85f0fb2c646a08fe924c210305b4a0 | |
| parent | 08e411109e3497bec27700145a43fc2d15c66008 (diff) | |
| download | org-mode-980e52282d702cdf8d9ad6c03297191f6fa5d61c.zip org-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.el | 4 |
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) |
