From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Cross Subject: Re: ob-clojure will error result when contains comment Date: Fri, 14 Jul 2017 10:21:33 +1000 Message-ID: References: <87eftklo39.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="001a11484618180a7005543c08d2" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dVoMS-0006F6-Fi for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 20:21:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dVoMQ-0001Bc-Q5 for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 20:21:36 -0400 Received: from mail-qk0-x232.google.com ([2607:f8b0:400d:c09::232]:36635) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dVoMQ-0001BF-LD for emacs-orgmode@gnu.org; Thu, 13 Jul 2017 20:21:34 -0400 Received: by mail-qk0-x232.google.com with SMTP id v17so58262544qka.3 for ; Thu, 13 Jul 2017 17:21:34 -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" To: "numbchild@gmail.com" Cc: Org-mode --001a11484618180a7005543c08d2 Content-Type: text/plain; charset="UTF-8" Your second block can't run in a repl unless you have additional definitions you are not showing here. The error messages are complaining that 1. There is no function called sum. Clojure does not have a sum function and your not defining one in this block, so that makes perfect sense. 2. The function avg1 is unbound. This also makes perfect sense because the line where you try to bind avg1 is the same line where the error about sum is generated, which means that binding failed. The additional settings you are using might be contributing to your problems - I don't know I don't have any additional default header args. I would remove them and only set them once you know you have things working with normal/standard src block settings. The fact I cannot reproduce your errors with a stock setup indicates the problem is still something with your environment. On 13 July 2017 at 22:23, numbchild@gmail.com wrote: > I run the both blocks fine in CIDER REPL, that's weird. > I have the following special settings for ob-clojure. > ```elisp > (add-to-list 'org-babel-default-header-args:clojure > '(:eval . "yes")) > (add-to-list 'org-babel-default-header-args:clojure > '(:results . "value pp")) > (add-to-list 'org-babel-default-header-args:clojure ; for Clojure > `dotimes' etc. > '(:show-process . "no")) > (add-to-list 'org-babel-default-header-args:clojure > '(:noweb . "yes")) > ``` > > > [stardiviner] GPG key ID: 47C32433 > IRC(freeenode): stardiviner Twitter: @numbchild > Key fingerprint = 9BAA 92BC CDDD B9EF 3B36 CB99 B8C4 B8E5 47C3 2433 > Blog: http://stardiviner.github.io/ > > On Thu, Jul 13, 2017 at 4:48 PM, Tim Cross wrote: > >> >> I think there is something wrong with your environment and your second >> block is not legal code. If you run your second block directly in a >> clojure repl, you will get the same errors, which means it isn't an org >> issue. >> >> Executing your examples with org from master branch I get >> >> #+BEGIN_SRC clojure >> (+ 1 1) ;=> 2 >> #+END_SRC >> >> #+RESULTS: >> : 2 >> >> #+BEGIN_SRC clojure :results value >> (def sum1 #(reduce + %)) >> (def avg1 #(/ (sum %) (count %))) >> >> (defn stats >> [numbers] >> (map #(% numbers) [sum1 count avg1])) >> >> (stats [3 4 10]) >> >> (stats [80 1 44 13 6]) >> >> #+END_SRC >> >> #+RESULTS: >> : #'user/sum1#'user/statsclass clojure.lang.Compiler$CompilerExceptionclass >> java.lang.IllegalStateExceptionclass java.lang.IllegalStateExceptionclass >> clojure.lang.Compiler$CompilerExceptionclass >> java.lang.IllegalStateExceptionclass java.lang.IllegalStateExceptionCompilerException >> java.lang.RuntimeException: Unable to resolve symbol: sum in this context, >> compiling:(/tmp/form-init6637865895670060372.clj:2:15) >> : IllegalStateException Attempting to call unbound fn: #'user/avg1 >> clojure.lang.Var$Unbound.throwArity (Var.java:43) >> : IllegalStateException Attempting to call unbound fn: #'user/avg1 >> clojure.lang.Var$Unbound.throwArity (Var.java:43) >> >> I'm not sure why the version of ob-clojure.el is not yet in the org or >> org-plus-contrib packages - Does master only become maint after major >> version releases? >> >> Note also, there appears to be an issue with most recent versions of >> cider when you do cider-jack-in and your not inside a project. The >> issues seem to relate mainly to clj-refactor, but there could be other >> problems. Again, highly recommend running your cider inside a clojure >> project. >> >> Tim >> >> numbchild@gmail.com writes: >> >> > Here is the examples: >> > >> > #+BEGIN_SRC clojure >> > (+ 1 1) ;=> 2 >> > #+END_SRC >> > >> > #+RESULTS: >> > : class clojure.lang.LispReader$ReaderExceptionclass >> > java.lang.RuntimeExceptionRuntimeException EOF while reading, starting >> at >> > line 1 clojure.lang.Util.runtimeException (Util.java:221) >> > >> > #+BEGIN_SRC clojure :results value >> > (def sum1 #(reduce + %)) >> > (def avg1 #(/ (sum %) (count %))) >> > >> > (defn stats >> > [numbers] >> > (map #(% numbers) [sum1 count avg1])) >> > >> > (stats [3 4 10]) >> > ;; => (17 3 17/3) >> > >> > (stats [80 1 44 13 6]) >> > ;; => (144 5 144/5) >> > #+END_SRC >> > >> > #+RESULTS: >> > : class clojure.lang.LispReader$ReaderExceptionclass >> > java.lang.RuntimeExceptionRuntimeException EOF while reading, starting >> at >> > line 1 clojure.lang.Util.runtimeException (Util.java:221) >> > >> > >> > [stardiviner] GPG key ID: 47C32433 >> > IRC(freeenode): stardiviner Twitter: @numbchild >> > Key fingerprint = 9BAA 92BC CDDD B9EF 3B36 CB99 B8C4 B8E5 47C3 2433 >> > Blog: http://stardiviner.github.io/ >> >> >> -- >> Tim Cross >> > > -- regards, Tim -- Tim Cross --001a11484618180a7005543c08d2 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Your second block can't run in a repl unless you have = additional definitions you are not showing here. The error messages are com= plaining that=C2=A0

1. There is no function called sum. = Clojure does not have a sum function and your not defining one in this bloc= k, so that makes perfect sense.

2. The function av= g1 is unbound. This also makes perfect sense because the line where you try= to bind avg1 is the same line where the error about sum is generated, whic= h means that binding failed.=C2=A0

The additional = settings you are using might be contributing to your problems - I don't= know I don't have any additional default header args. I would remove t= hem and only set them once you know you have things working with normal/sta= ndard src block settings.=C2=A0

The fact I cannot = reproduce your errors with a stock setup indicates the problem is still som= ething with your environment. =C2=A0
=
On 13 July 2017 at 22:23, numbchild@gmail.com <numbchild@gmail.com&g= t; wrote:
I run the both blocks fine in CIDER REPL, that's weird.
I have the following special settings for ob-clojure.
```elisp
(add-to-list '= ;org-babel-default-header-args:clojure
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0'(:eval . "yes&= quot;))
(add-to-list 'org-babel-defau= lt-header-args:clojure
=C2=A0 =C2=A0= =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0'(:results . "value pp"))<= /div>
(add-to-list 'org-babel-default-heade= r-args:clojure ; for Clojure `dotimes' etc.
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0'(:show-pro= cess . "no"))
(add-to-list '= ;org-babel-default-header-args:clojure
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0'(:noweb . "yes= "))
```


[stardiviner]=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0 <Hack this world!>=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0 GPG key ID: 47C32433
IRC(freeenode): stardiviner =C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0=C2=A0=C2=A0 Twitter:=C2=A0 @numbchild
Key fingerprint =3D 9= BAA 92BC CDDD B9EF 3B36=C2=A0 CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.= io/

On Thu, Jul 13= , 2017 at 4:48 PM, Tim Cross <theophilusx@gmail.com> wro= te:

I think there is something wrong with your environment and your second
block is not legal code. If you run your second block directly in a
clojure repl, you will get the same errors, which means it isn't an org= issue.

Executing your examples with org from master branch I get

#+BEGIN_SRC clojure
(+ 1 1) ;=3D> 2
#+END_SRC

#+RESULTS:
: 2

#+BEGIN_SRC clojure :results value
(def sum1 #(reduce + %))
(def avg1 #(/ (sum %) (count %)))

(defn stats
=C2=A0 [numbers]
=C2=A0 (map #(% numbers) [sum1 count avg1]))

(stats [3 4 10])

(stats [80 1 44 13 6])

#+END_SRC

#+RESULTS:
: #'user/sum1#'user/statsclass clojure.lang.Compiler$CompilerE= xceptionclass java.lang.IllegalStateExceptionclass java.lang.IllegalSt= ateExceptionclass clojure.lang.Compiler$CompilerExceptionclass ja= va.lang.IllegalStateExceptionclass java.lang.IllegalStateExceptio= nCompilerException java.lang.RuntimeException: Unable to resolve symbol: su= m in this context, compiling:(/tmp/form-init6637865895670060372.clj:2:= 15)
: IllegalStateException Attempting to call unbound fn: #'user/avg1=C2= =A0 clojure.lang.Var$Unbound.throwArity (Var.java:43)
: IllegalStateException Attempting to call unbound fn: #'user/avg1=C2= =A0 clojure.lang.Var$Unbound.throwArity (Var.java:43)

I'm not sure why the version of ob-clojure.el is not yet in the org or<= br> org-plus-contrib packages - Does master only become maint after major
version releases?

Note also, there appears to be an issue with most recent versions of
cider when you do cider-jack-in and your not inside a project. The
issues seem to relate mainly to clj-refactor, but there could be other
problems. Again, highly recommend running your cider inside a clojure
project.

Tim

numbchild@gmail.co= m writes:

> Here is the examples:
>
> #+BEGIN_SRC clojure
> (+ 1 1) ;=3D> 2
> #+END_SRC
>
> #+RESULTS:
> : class clojure.lang.LispReader$ReaderExceptionclass
> java.lang.RuntimeExceptionRuntimeException EOF while reading, sta= rting at
> line 1=C2=A0 clojure.lang.Util.runtimeException (Util.java:221) >
> #+BEGIN_SRC clojure :results value
> (def sum1 #(reduce + %))
> (def avg1 #(/ (sum %) (count %)))
>
> (defn stats
>=C2=A0 =C2=A0[numbers]
>=C2=A0 =C2=A0(map #(% numbers) [sum1 count avg1]))
>
> (stats [3 4 10])
> ;; =3D> (17 3 17/3)
>
> (stats [80 1 44 13 6])
> ;; =3D> (144 5 144/5)
> #+END_SRC
>
> #+RESULTS:
> : class clojure.lang.LispReader$ReaderExceptionclass
> java.lang.RuntimeExceptionRuntimeException EOF while reading, sta= rting at
> line 1=C2=A0 clojure.lang.Util.runtimeException (Util.java:221) >
>
> [stardiviner]=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0<Hack this wo= rld!>=C2=A0 =C2=A0 =C2=A0 GPG key ID: 47C32433
> IRC(freeenode): stardiviner=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Twitter:=C2=A0 @numbchild
> Key fingerprint =3D 9BAA 92BC CDDD B9EF 3B36=C2=A0 CB99 B8C4 B8E5 47C3= 2433
> Blog: http://stardiviner.github.io/


--
Tim Cross




--
regards,

Tim

--
T= im Cross

--001a11484618180a7005543c08d2--