From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Welle Subject: Re: Table formula from code block Date: Mon, 23 Jan 2017 13:04:47 +0100 Message-ID: <871svuf0dc.fsf@luisa.c0t0d0s0.de> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35027) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVdMt-0000KI-LZ for emacs-orgmode@gnu.org; Mon, 23 Jan 2017 07:05:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVdMo-00021Z-48 for emacs-orgmode@gnu.org; Mon, 23 Jan 2017 07:05:03 -0500 Received: from mout.gmx.net ([212.227.15.15]:50915) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVdMn-00020E-Q8 for emacs-orgmode@gnu.org; Mon, 23 Jan 2017 07:04:58 -0500 Received: from stella.c0t0d0s0.de ([89.204.139.213]) by mail.gmx.com (mrgmx003 [212.227.17.190]) with ESMTPSA (Nemesis) id 0LqALY-1c0gKs0aKe-00dm8i for ; Mon, 23 Jan 2017 13:04:54 +0100 Received: from Stella (stella.c0t0d0s0.de [192.168.42.1]) by stella.c0t0d0s0.de (Postfix) with ESMTP id 8FE47C45FC for ; Mon, 23 Jan 2017 13:04:47 +0100 (CET) In-Reply-To: (Roger Mason's message of "Sun, 22 Jan 2017 08:57:53 -0330") 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: emacs-orgmode@gnu.org Hello, I think there are several problems, starting with BEGIN_SRC sh and some more. But fixing them doesn't bring success. I even have trouble to get a minimal example to work: #+NAME: foo #+BEGIN_SRC emacs-lisp (+ 4 4) #+END_SRC | bar | foo | |--------+--------| | 42 | #ERROR | #+TBLFM: $2='(org-sbe "foo")::$1=42 I'm not sure, what the problem is. Looking at org-sbe there is something, I don't understand. In the end org-babel-execute-src-block is called. That executes the _current_ source code block. But I don't understand, how foo (in this example) becomes the current source code block. Can someone explain, please? Is there a side effect, I don't see? Or maybe a regression? Regards hmw