org-agenda.el (org-agenda-finalize): Activate plain links.

* org-agenda.el (org-agenda-finalize): Activate plain links.
This commit is contained in:
Bastien Guerry 2012-12-11 17:08:00 +01:00
parent 57a13ab9d9
commit 08e411109e
1 changed files with 3 additions and 0 deletions

View File

@ -3514,6 +3514,9 @@ generating a new one."
(save-excursion (save-excursion
(let ((inhibit-read-only t)) (let ((inhibit-read-only t))
(goto-char (point-min)) (goto-char (point-min))
(while (org-activate-plain-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-bracket-links (point-max))
(add-text-properties (match-beginning 0) (match-end 0) (add-text-properties (match-beginning 0) (match-end 0)
'(face org-link))) '(face org-link)))