diff --git a/lisp/core/repl.el b/lisp/core/repl.el index 7322b550..34be061e 100644 --- a/lisp/core/repl.el +++ b/lisp/core/repl.el @@ -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)))))