branch: elpa/inf-clojure
commit b04f05d2c735795b68a10cc7e699b676a8acc811
Author: Erik Assum <e...@assum.net>
Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>

    Fix the default value for inf-clojure-arglists-form-planck (#112)
    
    In the work I did with #105, I missed a closing paren, which caused 
inf-clojure with Planck to misbehave.
---
 inf-clojure.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inf-clojure.el b/inf-clojure.el
index dd4ccb1..d1d28ef 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -774,7 +774,7 @@ If you are using REPL types, it will pickup the most 
approapriate
   :package-version '(inf-clojure . "2.0.0"))
 
 (defcustom inf-clojure-arglists-form-planck
-  "(planck.repl/get-arglists \"%s\""
+  "(planck.repl/get-arglists \"%s\")"
   "Planck form to query inferior Clojure for a function's arglists."
   :type 'string
   :safe #'stringp

Reply via email to