+2008-05-19 Xavier Maillard <xma@gnu.org> (tiny change)
+
+ * mh-utils.el (mh-find-path): Don't throw error if MH environment
+ variable is being used (closes SF #1946861).
+
2008-05-19 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
* mh-search.el (mh-mairix-regexp-builder): Add additional items to
(getenv "MH")))
(if (null (mh-variants))
(error "Install MH and run install-mh before running MH-E"))
- (let ((profile "~/.mh_profile"))
- (if (not (file-readable-p profile))
- (error "Run install-mh before running MH-E")))
+ (if (not (or (getenv "MH") (file-readable-p "~/.mh_profile")))
+ (error "Run install-mh before running MH-E"))
;; Read MH profile.
(setq mh-user-path (mh-profile-component "Path"))
(if (not mh-user-path)