summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-25 01:16:14 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-25 01:16:14 +0000
commit38fb3722062ede32247f39612088950ad3e7cb5f (patch)
tree17ede4292c74f6cfb725b0b018487b7ca603bea5 /lisp/emacs-lisp
parent32bf4c34c7fa40055034d4f3e60c2883a99fc4a3 (diff)
downloademacs-38fb3722062ede32247f39612088950ad3e7cb5f.tar.gz
emacs-38fb3722062ede32247f39612088950ad3e7cb5f.tar.bz2
emacs-38fb3722062ede32247f39612088950ad3e7cb5f.zip
(list-load-path-shadows): Pass proper format string to message.
(list-load-path-shadows): Delete format call inside message.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/shadow.el4
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)