ox-org: Tiny refactoring

* lisp/ox-org.el (org-org-section): Tiny refactoring.  Use appropriate
  property.
This commit is contained in:
Nicolas Goaziou 2014-05-21 21:29:16 +02:00
parent 241286865c
commit bc456879ff

View file

@ -157,7 +157,7 @@ a communication channel."
(let ((footnotes-alist (let ((footnotes-alist
(org-element-map section 'footnote-reference (org-element-map section 'footnote-reference
(lambda (fn) (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) (org-export-footnote-first-reference-p fn info)
(cons (org-element-property :label fn) (cons (org-element-property :label fn)
(org-export-get-footnote-definition fn info)))) (org-export-get-footnote-definition fn info))))