1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

(list-load-path-shadows): Pass proper format string to message.

(list-load-path-shadows): Delete format call inside message.
This commit is contained in:
Karl Heuer 1996-01-25 01:16:14 +00:00
parent 32bf4c34c7
commit 38fb372206

View File

@ -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)