From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Guerry Subject: [Accepted] [O, 1/5] bind org-export-current-backend in generic exporter. Date: Sat, 22 Oct 2011 11:38:59 +0200 (CEST) Message-ID: <20111022093859.EB525A976@myhost.localdomain> References: <1319213609-40770-2-git-send-email-rpgoldman@real-time.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:59494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHY1q-0004Bu-Ag for emacs-orgmode@gnu.org; Sat, 22 Oct 2011 05:38:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RHY1o-0003oN-NJ for emacs-orgmode@gnu.org; Sat, 22 Oct 2011 05:38:10 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:62171) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RHY1o-0003oB-IW for emacs-orgmode@gnu.org; Sat, 22 Oct 2011 05:38:08 -0400 Received: by wyg34 with SMTP id 34so5600428wyg.0 for ; Sat, 22 Oct 2011 02:38:07 -0700 (PDT) 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 Patch 996 (http://patchwork.newartisans.com/patch/996/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1319213609-40770-2-git-send-email-rpgoldman%40real-time.com%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-Version: 1.0 > Content-Transfer-Encoding: 7bit > Subject: [O,1/5] bind org-export-current-backend in generic exporter. > Date: Fri, 21 Oct 2011 21:13:25 -0000 > From: Robert P. Goldman > X-Patchwork-Id: 996 > Message-Id: <1319213609-40770-2-git-send-email-rpgoldman@real-time.com> > To: emacs-orgmode@gnu.org > Cc: "Robert P. Goldman" > > This is needed for org-export-preprocess-string to function correctly. > > --- > contrib/lisp/org-export-generic.el | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/contrib/lisp/org-export-generic.el b/contrib/lisp/org-export-generic.el > index bb42b60..29e90b8 100644 > --- a/contrib/lisp/org-export-generic.el > +++ b/contrib/lisp/org-export-generic.el > @@ -617,6 +617,7 @@ underlined headlines. The default is 3." > (buffer-substring > (if (org-region-active-p) (region-beginning) (point-min)) > (if (org-region-active-p) (region-end) (point-max)))) > + (org-export-current-backend 'org-export-generic) > (lines (org-split-string > (org-export-preprocess-string > region >