Browse Source

org-export: Remove call to a phantom function

* contrib/lisp/org-export.el (org-export-get-min-level): Remove call
  to a phantom function.
Nicolas Goaziou 13 years ago
parent
commit
6b0a302ead
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/lisp/org-export.el

+ 1 - 1
contrib/lisp/org-export.el

@@ -1313,7 +1313,7 @@ OPTIONS is a plist holding export options."
       (mapc
        (lambda (blob)
 	 (when (and (eq (org-element-type blob) 'headline)
-		    (not (org-export-ignored-p blob options)))
+		    (not (member blob (plist-get options :ignore-list))))
 	   (setq min-level
 		 (min (org-element-property :level blob) min-level)))
 	 (when (= min-level 1) (throw 'exit 1)))