diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-25 01:16:14 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-25 01:16:14 +0000 |
commit | 47736b8834f4ad79834a8088d57cc7e62700043e (patch) | |
tree | a86c806b825dfe944041562595c696069429d48d | |
parent | c6f200e7f74ca7df484c025bf969e504148fb969 (diff) | |
download | emacs-47736b8834f4ad79834a8088d57cc7e62700043e.tar.gz |
(list-load-path-shadows): Pass proper format string to message.
(list-load-path-shadows): Delete format call inside message.
-rw-r--r-- | lisp/emacs-lisp/shadow.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el index 1280a23a1de..686fa9851e6 100644 --- a/lisp/emacs-lisp/shadow.el +++ b/lisp/emacs-lisp/shadow.el @@ -193,9 +193,9 @@ buffer called `*Shadows*'. Shadowings are located by calling the (insert msg "\n"))) ;; We are non-interactive, print shadows via message. (while shadows - (message (format "%s shadows %s" (car shadows) (car (cdr shadows)))) + (message "%s shadows %s" (car shadows) (car (cdr shadows))) (setq shadows (cdr (cdr shadows)))) - (message msg)))) + (message "%s" msg)))) (provide 'shadow) |