branch: externals/dape
commit 8670837cbbb96384577b38470efa13118994f6b1
Author: Daniel Pettersson <dan...@dpettersson.net>
Commit: Daniel Pettersson <dan...@dpettersson.net>

    Clarify REPL using last input
---
 dape.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dape.el b/dape.el
index d3fbe90b99..7784d29bb9 100644
--- a/dape.el
+++ b/dape.el
@@ -4579,7 +4579,7 @@ Called by `comint-input-sender' in `dape-repl-mode'."
    ((and (string-empty-p input)
          (not (string-empty-p (car (ring-elements comint-input-ring)))))
     (when-let* ((last (car (ring-elements comint-input-ring))))
-      (message "Repeating last input `%s'" last)
+      (message "Using last input `%s'" last)
       (dape--repl-input-sender dummy-process last)))
    ;; Run command from `dape-named-commands'
    ((pcase-let* ((`(,cmd . ,args)

Reply via email to