summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2014-05-21 21:30:38 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2014-05-21 21:30:38 +0200
commit2e370ed537c14ce33989d7188dee7d285c0ccd0e (patch)
tree335f34237cc90302f1cb79b9963a71def7b59f88
parentdf53dce91168a5f565fb9d7cfc9761517ca9f979 (diff)
parentbc456879ff7f248371e8571597ece6dcf9239a81 (diff)
downloadorg-mode-2e370ed537c14ce33989d7188dee7d285c0ccd0e.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/ox-org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-org.el b/lisp/ox-org.el
index 28af966..fd40ea9 100644
--- a/lisp/ox-org.el
+++ b/lisp/ox-org.el
@@ -194,7 +194,7 @@ a communication channel."
(let ((footnotes-alist
(org-element-map section 'footnote-reference
(lambda (fn)
- (and (not (org-element-property :inline-definition fn))
+ (and (eq (org-element-property :type fn) 'standard)
(org-export-footnote-first-reference-p fn info)
(cons (org-element-property :label fn)
(org-export-get-footnote-definition fn info))))