From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Guerry Subject: [Accepted] [O] Docstring fix for org-export-preprocess-string Date: Thu, 10 Mar 2011 19:09:11 +0100 (CET) Message-ID: <20110310180911.4F0CA6A42@myhost.localdomain> References: <86ei6eoq4l.fsf@thinkpad.colorado> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=36707 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxkIr-0000ib-Hh for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:09:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxkIq-00025l-35 for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:09:37 -0500 Received: from mail-ww0-f41.google.com ([74.125.82.41]:56014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxkIp-00025g-UD for emacs-orgmode@gnu.org; Thu, 10 Mar 2011 13:09:36 -0500 Received: by wwi17 with SMTP id 17so1571748wwi.0 for ; Thu, 10 Mar 2011 10:09:35 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Patch 672 (http://patchwork.newartisans.com/patch/672/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C86ei6eoq4l.fsf%40thinkpad.colorado%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] Docstring fix for org-export-preprocess-string > Date: Thu, 10 Mar 2011 22:13:30 -0000 > From: Rodrigo Lazo > X-Patchwork-Id: 672 > Message-Id: <86ei6eoq4l.fsf@thinkpad.colorado> > To: emacs-orgmode@gnu.org > > Hi, > > I found a trivial error with this docstring. > > --8<---------------cut here---------------start------------->8--- > --8<---------------cut here---------------end--------------->8--- > > Best regards, > Seb > > > diff --git a/lisp/org-exp.el b/lisp/org-exp.el > index dff86b6..34f101d 100644 > --- a/lisp/org-exp.el > +++ b/lisp/org-exp.el > @@ -1042,7 +1042,7 @@ Pressing `1' will switch between these two options." > "Alist of code references and line numbers.") > > (defun org-export-preprocess-string (string &rest parameters) > - "Cleanup STRING so that that the true exported has a more consistent source. > + "Cleanup STRING so that the true exported has a more consistent source. > This function takes STRING, which should be a buffer-string of an org-file > to export. It then creates a temporary buffer where it does its job. > The result is then again returned as a string, and the exporter works > @@ -3084,4 +3084,3 @@ The depends on the variable `org-export-copy-to-kill'." > ;; arch-tag: 65985fe9-095c-49c7-a7b6-cb4ee15c0a95 > > ;;; org-exp.el ends here > - >