From mboxrd@z Thu Jan 1 00:00:00 1970 From: Soapy Smith Subject: Clojure Code Block Results not Tabularized Date: Tue, 28 Jan 2014 08:23:04 -0500 Message-ID: <1390915384.2241.11.camel@raven-CM5571> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W88dR-0007Id-5O for emacs-orgmode@gnu.org; Tue, 28 Jan 2014 08:23:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W88dI-0002pD-U0 for emacs-orgmode@gnu.org; Tue, 28 Jan 2014 08:23:25 -0500 Received: from qmta01.westchester.pa.mail.comcast.net ([76.96.62.16]:59384) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W88dI-0002oj-P3 for emacs-orgmode@gnu.org; Tue, 28 Jan 2014 08:23:16 -0500 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: emacs-orgmode@gnu.org Hello to the list, my first message here. This is in regards to code blocks in the Clojure language. The problem is that the results inserted into the org document should be tabularized. This is not happening using the latest version of org. Here is the simplest possible example: #+begin_src clojure :results value raw [1 2 3 4] #+end_src #+RESULTS: [1 2 3 4] The result block is not tabularized. In an older system, the result block is properly changed to an org table: #+RESULTS: | 1 | 2 | 3 | 4 | Here is a comparison of the systems, old and new, which produced the above results: Platform Old New emacs 24.3.1 24.3.1 Leiningen 2.3.4 2.3.4 Java 1.7._51 1.6.0_27 (both are OpenJDK 64 bit server VM) org 7.9 8.2.4 Old REPL: nrepl 0.1.8-preview New REPL: cider 0.6.0alpha The only thing strange I discovered about my new system is that it is using an older version of Java than the old system. Regards, Greg