commit 05acd6efa21ed714b78fc044b883ebba11ca5981
parent 8a4e6534c432c8711a88c3da9159ec0145bc4e1a
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Thu, 14 Jan 2021 22:24:05 +0100
Simplify message after kill
Some stuff I killed included double-quotes, so the extra quotes were
confusing.
I tried fancy Unicode quotes, faces, before realizing that nothing of
value is lost if I just remove this prefix.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.emacs b/.emacs
@@ -98,7 +98,7 @@
(defun my/kill (stuff)
(kill-new stuff)
- (message "Copied \"%s\"" stuff))
+ (message stuff))
(defun my/kill-ring-filename ()
(interactive)