Skip to content

Commit 635291e

Browse files
committed
fix(repl): Avoid re-print input; move to next line
1 parent 3f61ea5 commit 635291e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/core/repl.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
(while (setq input (read-from-minibuffer (ansi-blue "ELISP> ")))
4040
(with-current-buffer "*ielm*"
4141
(insert input)
42-
(setq eask--repl-old-pos (point)) ; skip all input
42+
(setq eask--repl-old-pos (1+ (point))) ; skip all input, move to next line
4343
(eask--silent (ielm-send-input))
4444
(eask--repl-output)))))
4545

0 commit comments

Comments
 (0)