From: Karl Heuer Date: Thu, 25 Jan 1996 01:16:14 +0000 (+0000) Subject: (list-load-path-shadows): Pass proper format string to message. X-Git-Tag: emacs-19.34~1512 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=38fb3722062ede32247f39612088950ad3e7cb5f;p=emacs.git (list-load-path-shadows): Pass proper format string to message. (list-load-path-shadows): Delete format call inside message. --- 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)