From 909ebe487644b8f403e027d7ddfae63b3d441bd8 Mon Sep 17 00:00:00 2001 From: justbur Date: Wed, 15 Jul 2015 14:11:04 -0400 Subject: [PATCH] Better notes --- which-key.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/which-key.el b/which-key.el index d9ca4ac7961..f2edf7901c6 100644 --- a/which-key.el +++ b/which-key.el @@ -263,7 +263,7 @@ Used when `which-key-popup-type' is frame.") (when (and (> echo-keystrokes 0) (eq which-key-popup-type 'minibuffer)) (setq echo-keystrokes which-key-echo-keystrokes) - (message "Which-key: note echo-keystrokes changed from %s to %s" + (message "which-key: echo-keystrokes changed from %s to %s" which-key--echo-keystrokes-backup echo-keystrokes))) (add-hook 'pre-command-hook #'which-key--hide-popup) (add-hook 'focus-out-hook #'which-key--stop-open-timer) @@ -322,7 +322,7 @@ bottom." (error "KEY and REPL should be strings")) (cond ((null alist) (list (cons key repl))) ((assoc-string key alist) - (message "Which-key: note the key %s already exists in %s. This addition will override that replacement." + (message "which-key: the key %s already exists in %s. This addition will override that replacement." key alist) (setcdr (assoc-string key alist) repl) alist)