File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 88* [ #83 ] ( https://github.com/clojure-emacs/inf-clojure/pull/85 ) : No such namespace: complete.core in lumo REPL.
99* [ #93 ] ( https://github.com/clojure-emacs/inf-clojure/pull/93 ) : Slow response from inf-clojure (completions, arglists, ...).
1010* [ #101 ] ( https://github.com/clojure-emacs/inf-clojure/pull/101 ) : ` inf-clojure-set-ns ` hangs Emacs.
11+ * [ #120 ] ( https://github.com/clojure-emacs/inf-clojure/pull/120 ) : Send REPL string always, even if empty.
1112
1213### New Features
1314
Original file line number Diff line number Diff line change @@ -329,8 +329,7 @@ always be preferred over `comint-send-string`. It delegates to
329329the string for evaluation. Refer to `comint-simple-send` for
330330customizations."
331331 (inf-clojure--set-repl-type proc)
332- (when (> (length string) 0 )
333- (comint-simple-send proc string)))
332+ (comint-simple-send proc string))
334333
335334(defcustom inf-clojure-load-form " (clojure.core/load-file \" %s\" )"
336335 " Format-string for building a Clojure expression to load a file.
You can’t perform that action at this time.
0 commit comments