Skip to content

Commit ae43e2e

Browse files
arichiardibbatsov
authored andcommitted
[Fix #113] Send REPL string always, even if empty
1 parent 8c27b06 commit ae43e2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
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

inf-clojure.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,7 @@ always be preferred over `comint-send-string`. It delegates to
329329
the string for evaluation. Refer to `comint-simple-send` for
330330
customizations."
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.

0 commit comments

Comments
 (0)