diff options
| author | Karl Heuer | 1996-01-25 00:54:39 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-25 00:54:39 +0000 |
| commit | 32561aba5f912cfdf879ccd01b1e3fbbc77c25e3 (patch) | |
| tree | 14bf2cd5068f1ccdb53d7eb3aaf6fe3d750db5d9 | |
| parent | 7e6fe07f0c3bc8cc2868d5e397fea994d136f15d (diff) | |
| download | emacs-32561aba5f912cfdf879ccd01b1e3fbbc77c25e3.tar.gz emacs-32561aba5f912cfdf879ccd01b1e3fbbc77c25e3.zip | |
(hippie-expand): Pass proper format string to message.
| -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." | |||
| 248 | (ding)) | 248 | (ding)) |
| 249 | (if (and hippie-expand-verbose | 249 | (if (and hippie-expand-verbose |
| 250 | (not (window-minibuffer-p (selected-window)))) | 250 | (not (window-minibuffer-p (selected-window)))) |
| 251 | (message (concat "Using " | 251 | (message "Using %s" |
| 252 | (prin1-to-string (nth he-num | 252 | (prin1-to-string (nth he-num |
| 253 | hippie-expand-try-functions-list))))))) | 253 | hippie-expand-try-functions-list)))))) |
| 254 | (if (and (>= he-num 0) | 254 | (if (and (>= he-num 0) |
| 255 | (eq (marker-buffer he-string-beg) (current-buffer))) | 255 | (eq (marker-buffer he-string-beg) (current-buffer))) |
| 256 | (progn | 256 | (progn |