From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Robert P. Goldman" Subject: [PATCH] Fixed shell script example in "Emacs Lisp evaluation of variables." Date: Thu, 21 Apr 2011 12:12:00 -0500 Message-ID: <1303405920-1184-2-git-send-email-rpgoldman@real-time.com> References: <1303405920-1184-1-git-send-email-rpgoldman@real-time.com> Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34015) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCxdf-0000NJ-RB for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 13:26:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QCxde-0001ip-UJ for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 13:25:59 -0400 Received: from enchanter.real-time.com ([63.170.91.11]:2515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QCxde-0001gb-KU for emacs-orgmode@gnu.org; Thu, 21 Apr 2011 13:25:58 -0400 In-Reply-To: <1303405920-1184-1-git-send-email-rpgoldman@real-time.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: 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 -- 1.7.3.5