From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Goldman Subject: Re: Patch for org-babel manual node Date: Thu, 21 Apr 2011 16:17:39 -0500 Message-ID: <4DB09EF3.3000108@real-time.com> References: <1303405920-1184-1-git-send-email-rpgoldman@real-time.com> <87ei4vwbyh.fsf@gmail.com> Reply-To: rpgoldman@real-time.com Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------010104060605000201060808" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44170) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QD1Fw-0007cG-7P for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 17:17:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QD1Fv-00068s-AG for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 17:17:44 -0400 Received: from mpls.sift.info ([75.146.46.193]:48745) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QD1Fv-00068V-68 for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 17:17:43 -0400 In-Reply-To: <87ei4vwbyh.fsf@gmail.com> 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: Eric Schulte Cc: emacs-orgmode@gnu.org This is a multi-part message in MIME format. --------------010104060605000201060808 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit On 4/21/11 Apr 21 -3:56 PM, Eric Schulte wrote: > Patch appears to be missing, could you resend? Hope this will go through better.... LMK if you don't get it. > > Thanks -- Eric > > "Robert P. Goldman" writes: > >> There was a bug in an example of argument passing in the org-babel >> part of the manual. Fixed in the following patch. >> >> > --------------010104060605000201060808 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="0001-Fixed-shell-script-example-in-Emacs-Lisp-evaluation-.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-Fixed-shell-script-example-in-Emacs-Lisp-evaluation-.pa"; filename*1="tch" >From 31bd57dc0a904ca0b42f46dd1c10fc772c678343 Mon Sep 17 00:00:00 2001 From: Robert P. Goldman Date: Thu, 21 Apr 2011 12:09:57 -0500 Subject: [PATCH] Fixed shell script example in "Emacs Lisp evaluation of variables." 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 -- 1.7.3.5 --------------010104060605000201060808--