summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2014-05-21 21:29:16 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2014-05-21 21:29:16 +0200
commitbc456879ff7f248371e8571597ece6dcf9239a81 (patch)
treecb167a4918709107ec0724afa9b0afea350581bf
parent241286865cb30dd36afc343209a9b5c418863939 (diff)
downloadorg-mode-bc456879ff7f248371e8571597ece6dcf9239a81.tar.gz
ox-org: Tiny refactoring
* lisp/ox-org.el (org-org-section): Tiny refactoring. Use appropriate property.
-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 8bd56c2..195b9d7 100644
--- a/lisp/ox-org.el
+++ b/lisp/ox-org.el
@@ -157,7 +157,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))))