Hi Nicolas,

Some keywords are missing:

   :version "25.1"
   :package-version '(Org . "9.0")

and perhaps

   :safe #'wholenump

Ok good, added.


  (defcustom org-babel-clojure-backend
    (cond ((featurep 'cider) 'cider)
        (t 'slime))
@@ -94,8 +100,9 @@
         (let ((result-params (cdr (assoc :result-params params))))
         (setq result
               (nrepl-dict-get
-               (nrepl-sync-request:eval
-                expanded (cider-current-connection) (cider-current-session))
+               (let ((nrepl-sync-request-timeout 
org-babel-clojure-sync-nrepl-timeout))
+                 (nrepl-sync-request:eval
+                  expanded (cider-current-connection) (cider-current-session)))
You forgot to

(defvar nrepl-sync-request-timeout)

This one is defined in the nREPL package. Maybe there is something that I don't understand, but do I have to re-defined it here?

I also think it makes sense to merge the 3 patches.

Ok will do.

Thanks,

Fred

Reply via email to