From: Richard M. Stallman Date: Mon, 4 May 1998 01:22:17 +0000 (+0000) Subject: (list-load-path-shadows): Don't say X-Git-Tag: emacs-20.3~1150 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=248a9f6d2f7649cdc500f3d8a1c97c6fe6e64135;p=emacs.git (list-load-path-shadows): Don't say anything if we are not interactive and nothing is wrong. --- diff --git a/lisp/emacs-lisp/shadow.el b/lisp/emacs-lisp/shadow.el index edaa74e6a3e..57fc13b09d8 100644 --- a/lisp/emacs-lisp/shadow.el +++ b/lisp/emacs-lisp/shadow.el @@ -249,11 +249,11 @@ buffer called `*Shadows*'. Shadowings are located by calling the (message "This site has duplicate Lisp libraries with the same name. If a locally-installed Lisp library overrides a library in the Emacs release, that can cause trouble, and you should probably remove the locally-installed -version unless you know what you are doing.\n")) - (while shadows - (message "%s hides %s" (car shadows) (car (cdr shadows))) - (setq shadows (cdr (cdr shadows)))) - (message "%s" msg))))) +version unless you know what you are doing.\n") + (while shadows + (message "%s hides %s" (car shadows) (car (cdr shadows))) + (setq shadows (cdr (cdr shadows)))) + (message "%s" msg)))))) (provide 'shadow)