Lazy autoloading of org-id.el to follow links
* lisp/org.el (org-open-at-point): The new code is being run in the same spot as `org-open-link-functions'. In case they failed, check if link matches "^id:" and if so, load the id interface and follwo the link. This fixes Emacs bug#14910: org-mode `org-open-at-point' doesn't follow id links.
This commit is contained in:
parent
ffd8dd9f0d
commit
9a0e84fbd7
10
lisp/org.el
10
lisp/org.el
|
@ -10535,8 +10535,14 @@ application the system uses for this file type."
|
|||
(error "Abort"))))
|
||||
|
||||
((and (string= type "thisfile")
|
||||
(run-hook-with-args-until-success
|
||||
'org-open-link-functions path)))
|
||||
(or (run-hook-with-args-until-success
|
||||
'org-open-link-functions path)
|
||||
(and (string-match "^id:" link)
|
||||
(or (featurep 'org-id) (require 'org-id))
|
||||
(progn
|
||||
(funcall (nth 1 (assoc "id" org-link-protocols))
|
||||
(substring path 3))
|
||||
t)))))
|
||||
|
||||
((string= type "thisfile")
|
||||
(if arg
|
||||
|
|
Loading…
Reference in New Issue