From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Moynihan Subject: Org-Babel - Clojure & Lazy Sequences Bug Date: Thu, 4 Nov 2010 14:11:39 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=51984 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PE0Y0-0003SN-JA for emacs-orgmode@gnu.org; Thu, 04 Nov 2010 10:12:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PE0Xp-0005eA-0M for emacs-orgmode@gnu.org; Thu, 04 Nov 2010 10:12:11 -0400 Received: from mail-qw0-f41.google.com ([209.85.216.41]:39540) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PE0Xo-0005dc-Rt for emacs-orgmode@gnu.org; Thu, 04 Nov 2010 10:12:00 -0400 Received: by qwi2 with SMTP id 2so1332399qwi.0 for ; Thu, 04 Nov 2010 07:12:00 -0700 (PDT) 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: emacs-orgmode@gnu.org I have the following org file: #+BEGIN_SRC clojure (range 10) #+END_SRC #+results: : clojure.lang.LazySeq@f35bf8c6 Where as I would expect to see the sequence. Evaluating the code inside a doall doesn't seem to do anything either: #+BEGIN_SRC clojure (doall (range 10)) #+END_SRC #+results: : clojure.lang.LazySeq@f35bf8c6 Is there any parameter I can pass to the block to get the code to execute in a doall and return the sequence values rather than the lazy-seq object itself? R.