From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aankhen Subject: Re: Wrong type argument listp on export Date: Thu, 21 Jul 2011 13:39:03 +0530 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjoJz-0005Cz-Ly for emacs-orgmode@gnu.org; Thu, 21 Jul 2011 04:09:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QjoJw-0001zE-04 for emacs-orgmode@gnu.org; Thu, 21 Jul 2011 04:09:27 -0400 Received: from mail-vx0-f169.google.com ([209.85.220.169]:55783) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QjoJv-0001z8-U0 for emacs-orgmode@gnu.org; Thu, 21 Jul 2011 04:09:23 -0400 Received: by vxg38 with SMTP id 38so937889vxg.0 for ; Thu, 21 Jul 2011 01:09:23 -0700 (PDT) In-Reply-To: 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: Dirk Scharff , Org mailing list Hi, On Wed, Jul 20, 2011 at 16:36, Dirk Scharff w= rote: > I narrowed down my problem to the following short example: > > * My Test Block > =C2=A0This is a test > =C2=A0#+source testblock > =C2=A0#+begin_src python :var x=3D3 :exports both :results output > =C2=A0print x*x > =C2=A0#+end_src > > executing the source-bock yields the correct result. When exporting this > file however I get the folowing error: > > Wrong type argument: listp, 3 I can confirm this using Org-mode from git (d8bd43e). Enabling debugging shows that the problem occurs in =E2=80=98org-babel-sha1-hash=E2= =80=99 when it tries to run =E2=80=98copy-seq=E2=80=99 on =E2=80=98(x . 3)=E2=80=99 at = line 759. It doesn=E2=80=99t seem to be specific to Python=E2=80=94using =E2=80=98:var foo=3Dbar=E2=80=99 see= ms to be what triggers it. Aankhen