From cf678d3cd2d84ec72359197a9cd71b63ac99b699 Mon Sep 17 00:00:00 2001 From: JenChieh Date: Sun, 7 Jan 2024 02:38:43 -0800 Subject: [PATCH] ensure skip all input --- lisp/core/repl.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/core/repl.el b/lisp/core/repl.el index b2576779..7322b550 100644 --- a/lisp/core/repl.el +++ b/lisp/core/repl.el @@ -39,6 +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 (eask--silent (ielm-send-input)) (eask--repl-output)))))