diff options
author | Miles Bader <miles@gnu.org> | 2005-09-19 10:14:34 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2005-09-19 10:14:34 +0000 |
commit | 430d3ed772627a9a23fccdeab2b868c6c41e8365 (patch) | |
tree | 8a69c5c1e412e66959ab9673876189a840fb79a9 /lisp/gnus/gnus.el | |
parent | b720164466434a80c4675f30bd54f6b28f365d1b (diff) | |
download | emacs-430d3ed772627a9a23fccdeab2b868c6c41e8365.tar.gz |
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-553
Merge from gnus--rel--5.10
Patches applied:
* gnus--rel--5.10 (patch 118-121)
- Update from CVS
- Merge from emacs--cvs-trunk--0
2005-09-16 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/gnus.el (gnus-group-startup-message): Bind image-load-path.
2005-09-14 Katsumi Yamaoka <yamaoka@jpl.org>
* lisp/gnus/gnus-art.el (gnus-mime-display-part): Protect against broken
MIME messages.
2005-09-15 Katsumi Yamaoka <yamaoka@jpl.org>
* man/gnus.texi (Finding the Parent): Fix description of how Gnus
finds article.
2005-09-14 Jari Aalto <jari.aalto@cante.net>
* man/gnus.texi (Advanced Scoring Examples): New exmples to teach how
to drop off non-answered articles.
Diffstat (limited to 'lisp/gnus/gnus.el')
-rw-r--r-- | lisp/gnus/gnus.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index d0e199e2d06..5d35137aec6 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -1006,6 +1006,11 @@ be set in `.emacs' instead." (fboundp 'find-image) (display-graphic-p) (let* ((data-directory (nnheader-find-etc-directory "images/gnus")) + (image-load-path (cond (data-directory + (list data-directory)) + ((boundp 'image-load-path) + (symbol-value 'image-load-path)) + (t load-path))) (image (find-image `((:type xpm :file "gnus.xpm" :color-symbols |