diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:39 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 00:54:39 +0000 |
commit | 6682e42f178c6ae6ebc261cf8e2b2398dad5d1f2 (patch) | |
tree | fa7ede770dc16a3df1cb8e43e964b1d80b75868c /lisp/hippie-exp.el | |
parent | 4dc721f6bc5b4cc3defea4b3691098ba209f386f (diff) | |
download | emacs-6682e42f178c6ae6ebc261cf8e2b2398dad5d1f2.tar.gz |
(hippie-expand): Pass proper format string to message.
Diffstat (limited to 'lisp/hippie-exp.el')
-rw-r--r-- | lisp/hippie-exp.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/hippie-exp.el b/lisp/hippie-exp.el index ecfcd9f0bc2..4b16c719371 100644 --- a/lisp/hippie-exp.el +++ b/lisp/hippie-exp.el @@ -248,9 +248,9 @@ undoes the expansion." (ding)) (if (and hippie-expand-verbose (not (window-minibuffer-p (selected-window)))) - (message (concat "Using " - (prin1-to-string (nth he-num - hippie-expand-try-functions-list))))))) + (message "Using %s" + (prin1-to-string (nth he-num + hippie-expand-try-functions-list)))))) (if (and (>= he-num 0) (eq (marker-buffer he-string-beg) (current-buffer))) (progn |