summaryrefslogtreecommitdiff
path: root/lisp/mh-e/mh-folder.el
diff options
context:
space:
mode:
authorBill Wohler <wohler@newt.com>2006-03-03 20:50:50 +0000
committerBill Wohler <wohler@newt.com>2006-03-03 20:50:50 +0000
commit5e9edb94b78ef77981213fca9319d591c7362855 (patch)
treeb183de8ee14e175dc9569922dc52a7004588267f /lisp/mh-e/mh-folder.el
parent3fbc098da9e1e5257bb7bcb219cf05c8a406b52e (diff)
downloademacs-5e9edb94b78ef77981213fca9319d591c7362855.tar.gz
* mh-folder.el (mh-folder-mode): Rename mh-image-load-path to
mh-image-load-path-for-library. * mh-letter.el (mh-letter-mode): Rename mh-image-load-path to mh-image-load-path-for-library. * mh-utils.el (mh-image-load-path): Rename to mh-image-load-path-for-library. Add example to docstring. Rename local variable mh-image-directory to image-directory. Move error checks to default case in cond and simplify.
Diffstat (limited to 'lisp/mh-e/mh-folder.el')
-rw-r--r--lisp/mh-e/mh-folder.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mh-e/mh-folder.el b/lisp/mh-e/mh-folder.el
index c25d3bc973f..dcf88670f90 100644
--- a/lisp/mh-e/mh-folder.el
+++ b/lisp/mh-e/mh-folder.el
@@ -591,10 +591,10 @@ perform the operation on all messages in that region.
\\{mh-folder-mode-map}"
(mh-do-in-gnu-emacs
(unless mh-folder-buttons-init-flag
- (let ((load-path
- (mh-image-load-path "mh-e" "mh-logo.xpm" 'load-path))
- (image-load-path
- (mh-image-load-path "mh-e" "mh-logo.xpm" 'image-load-path)))
+ (let ((load-path (mh-image-load-path-for-library
+ "mh-e" "mh-logo.xpm" 'load-path))
+ (image-load-path (mh-image-load-path-for-library
+ "mh-e" "mh-logo.xpm" 'image-load-path)))
(mh-tool-bar-folder-buttons-init)
(setq mh-folder-buttons-init-flag t)))
(set (make-local-variable 'tool-bar-map) mh-folder-tool-bar-map))