summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-01-20 20:27:04 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-01-20 20:27:04 +0100
commite760c0c1f2a7f7ddc2c6de7b040b1e7f1965462a (patch)
treef8595f4d0c5ea7a43e919ecf5fb7cad7d31faf94
parentb6610f8609c8deeb42d8e819cea88e4e8c1c3d61 (diff)
downloadorg-mode-e760c0c1f2a7f7ddc2c6de7b040b1e7f1965462a.tar.gz
org-export: Fix code typos
-rw-r--r--contrib/lisp/org-export.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el
index 1abf74e..1476d3f 100644
--- a/contrib/lisp/org-export.el
+++ b/contrib/lisp/org-export.el
@@ -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.