diff options
| author | Richard M. Stallman | 1998-05-04 01:22:17 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-04 01:22:17 +0000 |
| commit | 248a9f6d2f7649cdc500f3d8a1c97c6fe6e64135 (patch) | |
| tree | af3f139592372c0b960c3e21281069281e8a1e45 | |
| parent | 5522b032fc8f433ef050654db53c056211def009 (diff) | |
| download | emacs-248a9f6d2f7649cdc500f3d8a1c97c6fe6e64135.tar.gz emacs-248a9f6d2f7649cdc500f3d8a1c97c6fe6e64135.zip | |
(list-load-path-shadows): Don't say
anything if we are not interactive and nothing is wrong.
| -rw-r--r-- | lisp/emacs-lisp/shadow.el | 10 |
1 files changed, 5 insertions, 5 deletions
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 | |||
| 249 | (message "This site has duplicate Lisp libraries with the same name. | 249 | (message "This site has duplicate Lisp libraries with the same name. |
| 250 | If a locally-installed Lisp library overrides a library in the Emacs release, | 250 | If a locally-installed Lisp library overrides a library in the Emacs release, |
| 251 | that can cause trouble, and you should probably remove the locally-installed | 251 | that can cause trouble, and you should probably remove the locally-installed |
| 252 | version unless you know what you are doing.\n")) | 252 | version unless you know what you are doing.\n") |
| 253 | (while shadows | 253 | (while shadows |
| 254 | (message "%s hides %s" (car shadows) (car (cdr shadows))) | 254 | (message "%s hides %s" (car shadows) (car (cdr shadows))) |
| 255 | (setq shadows (cdr (cdr shadows)))) | 255 | (setq shadows (cdr (cdr shadows)))) |
| 256 | (message "%s" msg))))) | 256 | (message "%s" msg)))))) |
| 257 | 257 | ||
| 258 | (provide 'shadow) | 258 | (provide 'shadow) |
| 259 | 259 | ||