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 feca1cc

Browse filesBrowse files
arichiardibbatsov
authored andcommitted
Send string even when empty
I fixed it once why not fixing it twice, see #120.
1 parent c3217c3 commit feca1cc
Copy full SHA for feca1cc

File tree

Expand file treeCollapse file tree

1 file changed

+2
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-3
lines changed

‎inf-clojure.el

Copy file name to clipboardExpand all lines: inf-clojure.el
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,9 +341,8 @@ the string for evaluation. Refer to `comint-simple-send` for
341341
customizations."
342342
(inf-clojure--set-repl-type proc)
343343
(let ((sanitized (inf-clojure--sanitize-command string)))
344-
(when (not (string-empty-p sanitized))
345-
(inf-clojure--log-string sanitized "----CMD->")
346-
(comint-simple-send proc sanitized))))
344+
(inf-clojure--log-string sanitized "----CMD->")
345+
(comint-simple-send proc sanitized)))
347346

348347
(defcustom inf-clojure-load-form "(clojure.core/load-file \"%s\")"
349348
"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.