From 20b3d550e0bf6660ddeb46d9f329fd3964d33755 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 12 Dec 2012 08:42:55 +0100 Subject: [PATCH] org.el: Allow to open any link within footnotes definition, not only bracket links. * org.el (org-open-at-point): Allow to open any link within footnotes definition, not only bracket links. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index bc551fe06..60e2a8be5 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -9659,7 +9659,7 @@ application the system uses for this file type." (not (org-in-regexp org-bracket-link-regexp))) (org-follow-timestamp-link)) ((and (or (org-footnote-at-reference-p) (org-footnote-at-definition-p)) - (not (org-in-regexp org-bracket-link-regexp))) + (not (org-in-regexp org-any-link-re))) (org-footnote-action)) (t (let (type path link line search (pos (point))) -- 2.11.4.GIT