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

    Clarify {memory,disassemble} command prompts
---
 dape.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dape.el b/dape.el
index 39eea8b6df..b5bea97964 100644
--- a/dape.el
+++ b/dape.el
@@ -2861,7 +2861,7 @@ If REUSE-BUFFER is non nil reuse the current buffer to 
display result
 of memory read."
   (interactive
    (list (string-trim
-          (read-string "Address: " nil nil
+          (read-string "View memory at address: " nil nil
                        (when-let* ((number (thing-at-point 'number)))
                          (format "0x%08x" number))))))
   (let ((conn (dape--live-connection 'stopped)))
@@ -2907,7 +2907,7 @@ of memory read."
   (interactive
    (list (string-trim
           (read-string
-           "Address: " nil nil
+           "Disassemble at address: " nil nil
            `(,@(when-let* ((number (thing-at-point 'number)))
                  (list (format "0x%08x" number)))
              ,@(when-let* ((conn (dape--live-connection 'stopped t))

Reply via email to