File tree 2 files changed +2
-2
lines changed
Filter options
2 files changed +2
-2
lines changed
Original file line number Diff line number Diff line change 8
8
* [ #83 ] ( https://github.com/clojure-emacs/inf-clojure/pull/85 ) : No such namespace: complete.core in lumo REPL.
9
9
* [ #93 ] ( https://github.com/clojure-emacs/inf-clojure/pull/93 ) : Slow response from inf-clojure (completions, arglists, ...).
10
10
* [ #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.
11
12
12
13
### New Features
13
14
Original file line number Diff line number Diff line change @@ -329,8 +329,7 @@ always be preferred over `comint-send-string`. It delegates to
329
329
the string for evaluation. Refer to `comint-simple-send` for
330
330
customizations."
331
331
(inf-clojure--set-repl-type proc)
332
- (when (> (length string) 0 )
333
- (comint-simple-send proc string)))
332
+ (comint-simple-send proc string))
334
333
335
334
(defcustom inf-clojure-load-form " (clojure.core/load-file \" %s\" )"
336
335
" Format-string for building a Clojure expression to load a file.
You can’t perform that action at this time.
0 commit comments