Browse Source

ox-org: Tiny refactoring

* lisp/ox-org.el (org-org-section): Tiny refactoring.  Use appropriate
  property.
Nicolas Goaziou 11 years ago
parent
commit
bc456879ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/ox-org.el

+ 1 - 1
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))))