Skip to content

Commit

Permalink
fix(repl): Avoid re-print input; move to next line
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 8, 2024
1 parent 3f61ea5 commit 635291e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/core/repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
(while (setq input (read-from-minibuffer (ansi-blue "ELISP> ")))
(with-current-buffer "*ielm*"
(insert input)
(setq eask--repl-old-pos (point)) ; skip all input
(setq eask--repl-old-pos (1+ (point))) ; skip all input, move to next line
(eask--silent (ielm-send-input))
(eask--repl-output)))))

Expand Down

0 comments on commit 635291e

Please sign in to comment.