branch: elpa/aidermacs commit d88a9cbe46d66ac18865acf9bc022ff903a86ca9 Merge: ce5b3db958 ea47980ed7 Author: Matthew Zeng <matthew...@posteo.net> Commit: GitHub <nore...@github.com>
Merge pull request #36 from LemonBreezes/fix-format-string-in-message-function --- aidermacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aidermacs.el b/aidermacs.el index 733f92e613..c5c353699d 100644 --- a/aidermacs.el +++ b/aidermacs.el @@ -494,7 +494,7 @@ Sends the \"/ls\" command and returns the list of files via callback." "Get the most recent output from aidermacs." (interactive) (when (stringp aidermacs--current-output) - (message aidermacs--current-output) + (message "%s" aidermacs--current-output) (kill-new aidermacs--current-output) aidermacs--current-output))