summaryrefslogtreecommitdiff
path: root/lisp/paths.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-07-23 18:27:13 +0000
committerRichard M. Stallman <rms@gnu.org>1992-07-23 18:27:13 +0000
commit5066b2ed5671687acf171755b8c6e850ea47bab5 (patch)
treea410fe67af721dbf2b8717d24a6756d0d85e81d4 /lisp/paths.el
parent4311876d912cfa9df3cd6867a9513dd4f062f257 (diff)
downloademacs-5066b2ed5671687acf171755b8c6e850ea47bab5.tar.gz
entered into RCS
Diffstat (limited to 'lisp/paths.el')
-rw-r--r--lisp/paths.el20
1 files changed, 11 insertions, 9 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index 59457ae62c6..de6c3eec79b 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -70,17 +70,19 @@ need to define the name.")
The `ORGANIZATION' environment variable is used instead if defined.")
(defvar mh-progs
- (cond ((file-directory-p "/usr/new/mh") "/usr/new/mh/")
- ((file-directory-p "/usr/local/bin/mh") "/usr/local/bin/mh/")
- ((file-directory-p "/usr/local/mh/") "/usr/local/mh/")
- (t "/usr/local/bin/"))
- "Directory containing MH commands")
+ (cond ((file-directory-p "/usr/bin/mh/") "/usr/bin/mh/") ;Ultrix 4.2
+ ((file-directory-p "/usr/new/mh/") "/usr/new/mh/") ;Ultrix <4.2
+ ((file-directory-p "/usr/local/bin/mh/") "/usr/local/bin/mh/")
+ ((file-directory-p "/usr/local/mh/") "/usr/local/mh/")
+ (t "/usr/local/bin/"))
+ "Directory containing MH commands.")
(defvar mh-lib
- (cond ((file-directory-p "/usr/new/lib/mh") "/usr/new/lib/mh/")
- ((file-directory-p "/usr/local/lib/mh") "/usr/local/lib/mh/")
- (t "/usr/local/bin/mh/"))
- "Directory of MH library")
+ (cond ((file-directory-p "/usr/lib/mh/") "/usr/lib/mh/") ;Ultrix 4.2
+ ((file-directory-p "/usr/new/lib/mh/") "/usr/new/lib/mh/") ;Ultrix <4.2
+ ((file-directory-p "/usr/local/lib/mh/") "/usr/local/lib/mh/")
+ (t "/usr/local/bin/mh/"))
+ "Directory of MH library.")
(defvar rmail-file-name "~/RMAIL"
"Name of user's primary mail file.")