Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ae43e2e

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

File tree

2 files changed

+2
-2
lines changed
Filter options

2 files changed

+2
-2
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines 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

Copy file name to clipboardExpand all lines: inf-clojure.el
+1-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.