org-export: Code typo

* contrib/lisp/org-export.el (org-export-get-parent-headline): Code typo.
This commit is contained in:
Nicolas Goaziou 2012-01-08 00:22:37 +01:00
parent 5ef692030f
commit f4d8a55282
1 changed files with 1 additions and 1 deletions

View File

@ -2843,7 +2843,7 @@ links."
"Return BLOB's closest parent headline or nil."
(catch 'exit
(mapc
(lambda (el) (when (eq (car el) headline) (throw 'exit el)))
(lambda (el) (when (eq (car el) 'headline) (throw 'exit el)))
(plist-get info :genealogy))
nil))