From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Sperber Subject: Fix bug in `org-footnote-normalize' [WAS: Current patches for XEmacs] Date: Sat, 07 Apr 2012 21:03:37 +0200 Message-ID: References: <87sjgigcu9.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:45764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SGawn-0004VW-PU for emacs-orgmode@gnu.org; Sat, 07 Apr 2012 15:05:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SGawm-0000bA-66 for emacs-orgmode@gnu.org; Sat, 07 Apr 2012 15:05:17 -0400 Received: from plane.gmane.org ([80.91.229.3]:32801) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SGawl-0000b6-Vq for emacs-orgmode@gnu.org; Sat, 07 Apr 2012 15:05:16 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SGawc-0000pI-5X for emacs-orgmode@gnu.org; Sat, 07 Apr 2012 21:05:06 +0200 Received: from dslb-088-070-150-189.pools.arcor-ip.net ([88.70.150.189]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Apr 2012 21:05:06 +0200 Received: from sperber by dslb-088-070-150-189.pools.arcor-ip.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 07 Apr 2012 21:05:06 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Bastien writes: > Can you send each patch in a separate email using > `git format-patch'? Here's the second one. -- Cheers =8-} Mike Friede, Völkerverständigung und überhaupt blabla --=-=-= Content-Disposition: inline >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 --=-=-=--