From mboxrd@z Thu Jan 1 00:00:00 1970 From: csanchezdll@gmail.com (Carlos =?utf-8?Q?S=C3=A1nchez?= de La Lama) Subject: Re: Nested calls in babel Date: Mon, 16 Sep 2019 11:31:01 +0200 Message-ID: <7t4l1coaei.fsf@gmail.com> References: <7t7e6gpoqz.fsf@gmail.com> <5B9174B4-C798-48B3-938A-33193376D22B@ucsd.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39619) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i9nLi-0003gO-R9 for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 05:31:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i9nLh-0001FX-3J for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 05:31:10 -0400 Received: from mail-wm1-x32d.google.com ([2a00:1450:4864:20::32d]:34820) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1i9nLg-00019E-RH for emacs-orgmode@gnu.org; Mon, 16 Sep 2019 05:31:09 -0400 Received: by mail-wm1-x32d.google.com with SMTP id y21so5164497wmi.0 for ; Mon, 16 Sep 2019 02:31:04 -0700 (PDT) In-Reply-To: <5B9174B4-C798-48B3-938A-33193376D22B@ucsd.edu> (Charles Berry's message of "Thu, 12 Sep 2019 17:17:40 +0000") 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" To: "Berry, Charles" Cc: "emacs-orgmode@gnu.org" Hi Chuck, >> I am being unable to make nested calls work. Here is a minimal snippet: >> >> --8<---------------cut here---------------start------------->8--- >> #+NAME: foo >> #+BEGIN_SRC emacs-lisp >> "foo" >> #+END_SRC >> >> #+NAME: bar >> #+CALL: foo() >> >> #+RESULTS: bar >> : foo >> >> #+CALL: bar() >> >> #+RESULTS: >> : nil >> --8<---------------cut here---------------end--------------->8--- > > Your example works for me. viz, the call to bar returns "foo" (not nil). thanks for checking. I was using 25.3. I have now upgraded to 26.3 and it works as expected :) Carlos