From 7ba1d262534f4784a17c47a8652ddbba749f8f83 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 21 Apr 2012 15:15:47 +0200 Subject: [PATCH] org-e-ascii: Fix small bug * EXPERIMENTAL/org-e-ascii.el (org-e-ascii--build-caption): Fix a "wrong number of arguments" bug. --- EXPERIMENTAL/org-e-ascii.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EXPERIMENTAL/org-e-ascii.el b/EXPERIMENTAL/org-e-ascii.el index 4bb32c2d7..56f543667 100644 --- a/EXPERIMENTAL/org-e-ascii.el +++ b/EXPERIMENTAL/org-e-ascii.el @@ -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")