branch: elpa/inf-clojure commit feca1cc392cef79118f0e757dae12c5012c744b0 Author: Andrea Richiardi <a.richiardi.w...@gmail.com> Commit: Bozhidar Batsov <bozhidar.bat...@gmail.com>
Send string even when empty I fixed it once why not fixing it twice, see #120. --- inf-clojure.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/inf-clojure.el b/inf-clojure.el index de64f39..730cf86 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -341,9 +341,8 @@ the string for evaluation. Refer to `comint-simple-send` for customizations." (inf-clojure--set-repl-type proc) (let ((sanitized (inf-clojure--sanitize-command string))) - (when (not (string-empty-p sanitized)) - (inf-clojure--log-string sanitized "----CMD->") - (comint-simple-send proc sanitized)))) + (inf-clojure--log-string sanitized "----CMD->") + (comint-simple-send proc sanitized))) (defcustom inf-clojure-load-form "(clojure.core/load-file \"%s\")" "Format-string for building a Clojure expression to load a file.