0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-22 08:10:43 +00:00

org-export: Fix code typos

This commit is contained in:
Nicolas Goaziou 2012-01-20 20:27:04 +01:00
parent b6610f8609
commit e760c0c1f2

View file

@ -2720,8 +2720,8 @@ Return a list of all elements found, in order of appearance."
(lambda (element local)
(and (or (org-element-get-property :caption element)
(org-element-get-property :name element))
(or (not predicate) (funcall predicate element)))
element) info))
(or (not predicate) (funcall predicate element))
element)) info))
(defun org-export-collect-tables (info)
"Build a list of tables.
@ -2747,7 +2747,7 @@ a \"figure\" is a vague concept that may depend on back-end.
Return a list of elements recognized as figures."
(org-export-collect-elements 'paragraph info predicate))
(defun org-export-collect-listings (backend info)
(defun org-export-collect-listings (info)
"Build a list of src blocks.
INFO is a plist used as a communication channel.