branch: elpa/inf-clojure
commit 262739c93b84963a891780b3a1a5ff6cbf1b99dd
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Fix spurious empty string in interactive spec
---
inf-clojure.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/inf-clojure.el b/inf-clojure.el
index 206296f684..a5516bb5c1 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -1067,7 +1067,7 @@ Prefix argument AND-GO means switch to the Clojure buffer
afterwards."
(defun inf-clojure-eval-form-and-next ()
"Send the previous sexp to the inferior Clojure process and move to the next
one."
- (interactive "")
+ (interactive)
(while (not (zerop (car (syntax-ppss))))
(up-list))
(inf-clojure-eval-last-sexp)