org-e-ascii: Fix small bug

* EXPERIMENTAL/org-e-ascii.el (org-e-ascii--build-caption): Fix
  a "wrong number of arguments" bug.
This commit is contained in:
Nicolas Goaziou 2012-04-21 15:15:47 +02:00 committed by Jambunathan K
parent 851fe42608
commit 7ba1d26253
1 changed files with 2 additions and 2 deletions

View File

@ -642,8 +642,8 @@ keyword."
(let ((reference
(org-export-get-ordinal
element info nil
(lambda (el) (or (org-element-property :caption el)
(org-element-property :name el)))))
(lambda (el info) (or (org-element-property :caption el)
(org-element-property :name el)))))
(title-fmt (org-e-ascii--translate
(case (org-element-type element)
(table "Table %d: %s")