From mboxrd@z Thu Jan 1 00:00:00 1970 From: francois@avalenn.eu Subject: table as argument to code block : type of the elements Date: Thu, 12 Sep 2013 09:43:43 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VK1ZQ-0005hl-Da for emacs-orgmode@gnu.org; Thu, 12 Sep 2013 03:44:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VK1ZI-0002RW-Nj for emacs-orgmode@gnu.org; Thu, 12 Sep 2013 03:44:08 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:57901) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VK1ZI-0002Qh-HM for emacs-orgmode@gnu.org; Thu, 12 Sep 2013 03:44:00 -0400 Received: from mfilter25-d.gandi.net (mfilter25-d.gandi.net [217.70.178.153]) by relay5-d.mail.gandi.net (Postfix) with ESMTP id 8218541C075 for ; Thu, 12 Sep 2013 09:43:45 +0200 (CEST) Received: from relay5-d.mail.gandi.net ([217.70.183.197]) by mfilter25-d.gandi.net (mfilter25-d.gandi.net [10.0.15.180]) (amavisd-new, port 10024) with ESMTP id MVCvZUlzBTAR for ; Thu, 12 Sep 2013 09:43:44 +0200 (CEST) Received: from webmail.gandi.net (unknown [10.58.1.141]) (Authenticated sender: francois@avalenn.eu) by relay5-d.mail.gandi.net (Postfix) with ESMTPA id 36AA341C053 for ; Thu, 12 Sep 2013 09:43:43 +0200 (CEST) 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 Hello list, This code does not work because of automatic conversion from string to number in org-babel-read-table. #+TBLNAME: table_test | name | id | |-------+-----| | name1 | 034 | | name2 | 135 | | name3 | 1B5 | #+NAME: code_test #+BEGIN_SRC emacs-lisp :var table=3Dtable_test (setq myv "") (dolist (line table myv) (unless (eq line 'hline) (setq myv (concat myv ";" (mapconcat 'identity line ","))))) myv #+END_SRC I would like to have this result : #+RESULTS: code_test : ;name,id;name1,034;name2,135;name3,1B5 Is there any possibility to deactivate this conversion as with inhibit-lisp-eval for lisp forms ? Or better is there any way to chose conversion parameters on a column to column basis ? Fran=C3=A7ois.