org-export: Fix "wrong number of arguments" error

* contrib/lisp/org-export.el (org-export-with-backend): Fix "wrong
  number of arguments" error.

This fixexs d1a075e6bb.
This commit is contained in:
Nicolas Goaziou 2012-11-22 17:44:10 +01:00
parent d1a075e6bb
commit eb1ef7267b
1 changed files with 1 additions and 1 deletions

View File

@ -2993,7 +2993,7 @@ channel used for export, as a plist.."
(if (memq type '(nil org-data)) (error "No foreign transcoder available")
(let ((transcoder
(cdr (assq type (org-export-backend-translate-table back-end)))))
(if (functionp transcoder) (funcall transcoder contents info)
(if (functionp transcoder) (funcall transcoder data contents info)
(error "No foreign transcoder available"))))))