# HG changeset patch # User Richard M. Stallman # Date 894244937 0 # Node ID 8332fee2c358499c54c81922de9069f3cfff0b50 # Parent 76061e1fa13618db4b3d0ee26ba7a5216abe890d (list-load-path-shadows): Don't say anything if we are not interactive and nothing is wrong. diff -r 76061e1fa136 -r 8332fee2c358 lisp/emacs-lisp/shadow.el --- a/lisp/emacs-lisp/shadow.el Mon May 04 00:13:13 1998 +0000 +++ b/lisp/emacs-lisp/shadow.el Mon May 04 01:22:17 1998 +0000 @@ -249,11 +249,11 @@ (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)