From bc456879ff7f248371e8571597ece6dcf9239a81 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 21 May 2014 21:29:16 +0200 Subject: [PATCH] ox-org: Tiny refactoring * lisp/ox-org.el (org-org-section): Tiny refactoring. Use appropriate property. --- lisp/ox-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-org.el b/lisp/ox-org.el index 8bd56c20a..195b9d765 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)))) -- 2.11.4.GIT