From 73b060b768c53dcc25e9bbe983155555dc467060 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 10 Aug 2013 09:42:20 +0200 Subject: [PATCH] ox: Only provide back-end name as second argument of filters * lisp/ox.el (org-export-filter-apply-functions): Only provide back-end name (a symbol) as second argument of filters, not the full back-end (a vector). --- lisp/ox.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox.el b/lisp/ox.el index 9d5b69d8c..d0ccc1e6f 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -2754,7 +2754,7 @@ VALUE is ignored. Call is done in a LIFO fashion, to be sure that developer specified filters, if any, are called first." (catch 'exit - (let ((backend-name (plist-get info :back-end))) + (let ((backend-name (org-export-backend-name (plist-get info :back-end)))) (dolist (filter filters value) (let ((result (funcall filter value backend-name info))) (cond ((not result) value) -- 2.11.4.GIT