branch: elpa/aidermacs
commit ea47980ed7ceacd6e04c54edf0eff3d75c4781b9
Author: StrawberryTea <[email protected]>
Commit: StrawberryTea <[email protected]>
fix: Fix string formatting 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))