diff options
Diffstat (limited to 'lisp/emacs-lisp')
-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) |