From mboxrd@z Thu Jan 1 00:00:00 1970 From: mylesenglish@gmail.com Subject: [BUG] error if arg to #+call: contains a comma Date: Mon, 12 Dec 2011 23:33:03 +0000 Message-ID: <87ipll5psg.fsf@gmail.com> Reply-To: emacs-orgmode Mode Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:38434) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RaFKE-00046q-Lx for emacs-orgmode@gnu.org; Mon, 12 Dec 2011 18:30:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RaFKD-0006yj-Kk for emacs-orgmode@gnu.org; Mon, 12 Dec 2011 18:30:26 -0500 Received: from mail-ww0-f49.google.com ([74.125.82.49]:54136) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RaFKD-0006yX-FT for emacs-orgmode@gnu.org; Mon, 12 Dec 2011 18:30:25 -0500 Received: by wgbdt11 with SMTP id dt11so9850827wgb.30 for ; Mon, 12 Dec 2011 15:30:23 -0800 (PST) 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 Mode Hello, There may be a problem with parsing arguments to the #+call function: #+name: A #+begin_src sh :var a="this, works" echo "$a" #+end_src #+results: A | this | works | #+call: A() #+results: A() | this | works | #+call: A(a="this also works") #+results: A(a="this also works") : this also works #+call: A(a="this, no work") Results in the message: reference 'no work"' not found in this buffer Myles