From mboxrd@z Thu Jan 1 00:00:00 1970 From: Xu Chunyang Subject: Re: Bug: [ob-clojure] Surprising evaluation result [9.1.6 (release_9.1.6-491-g70b029 @ /Users/xcy/src/org-mode/lisp/)] Date: Sat, 03 Mar 2018 19:16:03 +0800 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54398) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1es59B-0001Cy-2I for emacs-orgmode@gnu.org; Sat, 03 Mar 2018 06:16:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1es59A-0002BT-19 for emacs-orgmode@gnu.org; Sat, 03 Mar 2018 06:16:13 -0500 Received: from forward103p.mail.yandex.net ([2a02:6b8:0:1472:2741:0:8b7:106]:60052) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1es599-00029W-OY for emacs-orgmode@gnu.org; Sat, 03 Mar 2018 06:16:11 -0500 In-Reply-To: (numbchild@gmail.com's message of "Fri, 2 Mar 2018 21:29:05 +0800") 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" To: "numbchild@gmail.com" Cc: Org-mode "numbchild@gmail.com" writes: > No, it's not expected result. It should be caused by my commit here > https://code.orgmode.org/bzg/org-mode/pulls/5 I don't think so, your pull request is about ob-clojure-literate, while I am talking about ob-clojure. I want to know what authors of ob-clojure think about the behavior, is it a Bug? > Don't know how to workaround this. As for workaround, I have the following in my init.el (define-advice org-babel-expand-body:clojure (:filter-return (body) do) (format "(do %s)" body)) [...]