From b088bfff32d024ec67fcf8ee0812244128198d93 Mon Sep 17 00:00:00 2001 From: Mike Sperber Date: Wed, 4 Apr 2012 09:21:44 +0200 Subject: [PATCH 1/2] Fix bug ion `org-footnote-normalize'. * org-footnote.el (org-footnote-normalize): Correctly pass keyword arguments to `org-export-preprocess-string'. --- lisp/org-footnote.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el index 03b95d0..1987779 100644 --- a/lisp/org-footnote.el +++ b/lisp/org-footnote.el @@ -705,7 +705,7 @@ Additional note on `org-footnote-insert-pos-for-preprocessor': (org-combine-plists export-props '(:todo-keywords t :tags t :priority t)))) - (org-export-preprocess-string def parameters)) + (apply #'org-export-preprocess-string def parameters)) def) ;; Reference beginning position is a marker ;; to preserve it during further buffer -- 1.7.0.5