summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-12-12 08:42:55 +0100
committerBastien Guerry <bzg@altern.org>2012-12-12 08:42:55 +0100
commit20b3d550e0bf6660ddeb46d9f329fd3964d33755 (patch)
treeeb71132d25063f3e29d56aabbbdd54bca6db376c
parent7f0e7cb9b98d6ad1ab6e559fef81c1394f0a748c (diff)
downloadorg-mode-20b3d550e0bf6660ddeb46d9f329fd3964d33755.tar.gz
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.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index bc551fe..60e2a8b 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)))