From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: Re: org-babel-read should have option NOT to interpret as elisp Date: Mon, 28 Feb 2011 20:10:12 -0700 Message-ID: <8739n78qpf.fsf@gmail.com> References: <877hclbgxz.fsf@gmail.com> <801v2sqxpc.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=55975 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PuGG7-0008NJ-OY for emacs-orgmode@gnu.org; Mon, 28 Feb 2011 22:28:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PuGG6-0006VP-KR for emacs-orgmode@gnu.org; Mon, 28 Feb 2011 22:28:23 -0500 Received: from mail-yi0-f41.google.com ([209.85.218.41]:43958) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PuGG6-0006VH-DN for emacs-orgmode@gnu.org; Mon, 28 Feb 2011 22:28:22 -0500 Received: by yib2 with SMTP id 2so2297836yib.0 for ; Mon, 28 Feb 2011 19:28:21 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: =?utf-8?Q?S=C3=A9bastien?= Vauban Cc: emacs-orgmode@gnu.org Hi Seb, earlier in this thread, I attached a patch which allows string results in tables which look like elisp to be interpreted literally, e.g., #+results: elisp-looking-table | 1 | (+ 1 1) | | 2 | (+ 2 2) | | 3 | (+ 3 3) | #+begin_src perl :var data=elisp-looking-table[1,1] $data #+end_src results in #+results: : (+ 2 2) rather than #+results: : 4 > > Trying what you wrote on > http://eschulte.github.com/babel-dev/DONE-literal-values-from-tables.html, > that is using $$2 instead of $2 has the following behavior: when evaluating > the table, Org prompts me for a "Lisp expression"!? > It like doubel dollar sign syntax in table evaluation has bit-rot. It appears that some other part of Org-mode now interprets the double dollar sign as a prompt to the user -- although I can't seem to find the relevant code. The `sbe' in-table evaluation could use some attention. Best -- Eric