From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] Fixed shell script example in "Emacs Lisp evaluation of variables." Date: Mon, 2 May 2011 11:09:40 +0200 (CEST) Message-ID: <20110502090940.292A3437745@u016822.science.uva.nl> References: <1303405920-1184-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]:33511) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGp8R-0005rn-6L for emacs-orgmode@gnu.org; Mon, 02 May 2011 05:09:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QGp8Q-0005F7-0v for emacs-orgmode@gnu.org; Mon, 02 May 2011 05:09:43 -0400 Received: from u016822.science.uva.nl ([146.50.39.34]:50596) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGp8P-0005Ew-Pu for emacs-orgmode@gnu.org; Mon, 02 May 2011 05:09:41 -0400 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 756 (http://patchwork.newartisans.com/patch/756/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1303405920-1184-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] Fixed shell script example in "Emacs Lisp evaluation of > variables." > Date: Thu, 21 Apr 2011 22:12:00 -0000 > From: Robert P. Goldman > X-Patchwork-Id: 756 > Message-Id: <1303405920-1184-2-git-send-email-rpgoldman@real-time.com> > To: emacs-orgmode@gnu.org > Cc: "Robert P. Goldman" > > The variable names in the header arguments and in the sh code didn't line > up. Made them agree. > > --- > doc/org.texi | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/doc/org.texi b/doc/org.texi > index 17922d4..e68ed18 100644 > --- a/doc/org.texi > +++ b/doc/org.texi > @@ -12072,8 +12072,8 @@ org-mode file, while there is no such guarantee for evaluation of the code > block body. > > @example > -#+begin_src sh :var file-name=(buffer-file-name) :exports both > - wc -w $file > +#+begin_src sh :var filename=(buffer-file-name) :exports both > + wc -w $filename > #+end_src > @end example > >