From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniele Pizzolli Subject: [BUG] babel eval of emacs-lisp: orgtbl-to-orgtbl: Wrong type argument: listp, t Date: Mon, 23 Feb 2015 13:48:13 +0100 Message-ID: <86lhjossj6.fsf@me.localhost.invalid> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40884) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPsQu-0006yV-Ae for emacs-orgmode@gnu.org; Mon, 23 Feb 2015 07:48:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPsQr-0004lS-4Q for emacs-orgmode@gnu.org; Mon, 23 Feb 2015 07:48:20 -0500 Received: from relay6-d.mail.gandi.net ([2001:4b98:c:538::198]:44322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPsQq-0004l5-Ub for emacs-orgmode@gnu.org; Mon, 23 Feb 2015 07:48:17 -0500 Received: from mfilter19-d.gandi.net (mfilter19-d.gandi.net [217.70.178.147]) by relay6-d.mail.gandi.net (Postfix) with ESMTP id ABD22FB8A4 for ; Mon, 23 Feb 2015 13:48:15 +0100 (CET) Received: from relay6-d.mail.gandi.net ([217.70.183.198]) by mfilter19-d.gandi.net (mfilter19-d.gandi.net [10.0.15.180]) (amavisd-new, port 10024) with ESMTP id VXBm95PEcwGA for ; Mon, 23 Feb 2015 13:48:14 +0100 (CET) Received: from localhost.invalid (unknown [193.206.22.97]) (Authenticated sender: me@toel.it) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 40008FB88B for ; Mon, 23 Feb 2015 13:48:14 +0100 (CET) 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, my attempt to use org-mode for both interactive presentation and final report was unsuccessful due to a series of bugs and nuisances. Fortunately I can use the result of tangle. Will report the issues encountered to the list in the next few days. Here is a minor one. The following code, taken from [[info:org#Languages]] works if run after manually selecting it and running with M-x eval-region. But with M-x org-babel-execute-src-block it triggers an error. The *Messages* buffer shows: #+BEGIN_EXAMPLE executing Emacs-Lisp code block... orgtbl-to-orgtbl: Wrong type argument: listp, t #+END_EXAMPLE #+BEGIN_SRC emacs-lisp (org-babel-do-load-languages 'org-babel-load-languages '((emacs-lisp . nil) (R . t))) #+END_SRC #+BEGIN_SRC emacs-lisp (org-version nil t) #+END_SRC #+RESULTS: : Org-mode version 8.3beta (release_8.3beta-860-ge4da74 @ /home/vagrant/.emacs.d/el-get/org-mode/lisp/) Best, Daniele