org-export: Remove call to a phantom function

* contrib/lisp/org-export.el (org-export-get-min-level): Remove call
  to a phantom function.
This commit is contained in:
Nicolas Goaziou 2012-02-23 08:33:35 +01:00
parent a940e3d22c
commit 6b0a302ead
1 changed files with 1 additions and 1 deletions

View File

@ -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)))