diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-07-23 18:27:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-07-23 18:27:13 +0000 |
commit | a7f6929e5285f8145fa5265331ec56a61a659c64 (patch) | |
tree | e688dc9dd666c249d97abc6247be8e3b4c1e9ebc /lisp/paths.el | |
parent | 924f0a2420709765dfe93c7c31f81de6dbcecbb7 (diff) | |
download | emacs-a7f6929e5285f8145fa5265331ec56a61a659c64.tar.gz |
entered into RCS
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 20 |
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.") |