branch: elpa/aidermacs commit 34fecf9703305c3f87c8570d6176d7a12a8d97c0 Author: Mingde (Matthew) Zeng <matthew...@posteo.net> Commit: Mingde (Matthew) Zeng <matthew...@posteo.net>
fix: use aidermacs-read-string instead of aidermacs-plain-read-string in aidermacs-debug --- aidermacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aidermacs.el b/aidermacs.el index 21dd53e326..c62613b5b3 100644 --- a/aidermacs.el +++ b/aidermacs.el @@ -535,7 +535,7 @@ If cursor is inside a function, include the function name as context." "Prompt the user for a command and send it to the corresponding aidermacs comint buffer prefixed with \"/debug \", replacing all newline characters except for the one at the end." (interactive) - (let ((command (aidermacs-plain-read-string "Enter exception, can be multiple lines: "))) + (let ((command (aidermacs-read-string "Enter exception, can be multiple lines: "))) (aidermacs--send-command (concat "/ask Investigate the following exception, with current added files as context: " command) t))) ;;;###autoload