aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-07-23 18:27:13 +0000
committerRichard M. Stallman1992-07-23 18:27:13 +0000
commita7f6929e5285f8145fa5265331ec56a61a659c64 (patch)
treee688dc9dd666c249d97abc6247be8e3b4c1e9ebc
parent924f0a2420709765dfe93c7c31f81de6dbcecbb7 (diff)
downloademacs-a7f6929e5285f8145fa5265331ec56a61a659c64.tar.gz
emacs-a7f6929e5285f8145fa5265331ec56a61a659c64.zip
entered into RCS
-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.")
70The `ORGANIZATION' environment variable is used instead if defined.") 70The `ORGANIZATION' environment variable is used instead if defined.")
71 71
72(defvar mh-progs 72(defvar mh-progs
73 (cond ((file-directory-p "/usr/new/mh") "/usr/new/mh/") 73 (cond ((file-directory-p "/usr/bin/mh/") "/usr/bin/mh/") ;Ultrix 4.2
74 ((file-directory-p "/usr/local/bin/mh") "/usr/local/bin/mh/") 74 ((file-directory-p "/usr/new/mh/") "/usr/new/mh/") ;Ultrix <4.2
75 ((file-directory-p "/usr/local/mh/") "/usr/local/mh/") 75 ((file-directory-p "/usr/local/bin/mh/") "/usr/local/bin/mh/")
76 (t "/usr/local/bin/")) 76 ((file-directory-p "/usr/local/mh/") "/usr/local/mh/")
77 "Directory containing MH commands") 77 (t "/usr/local/bin/"))
78 "Directory containing MH commands.")
78 79
79(defvar mh-lib 80(defvar mh-lib
80 (cond ((file-directory-p "/usr/new/lib/mh") "/usr/new/lib/mh/") 81 (cond ((file-directory-p "/usr/lib/mh/") "/usr/lib/mh/") ;Ultrix 4.2
81 ((file-directory-p "/usr/local/lib/mh") "/usr/local/lib/mh/") 82 ((file-directory-p "/usr/new/lib/mh/") "/usr/new/lib/mh/") ;Ultrix <4.2
82 (t "/usr/local/bin/mh/")) 83 ((file-directory-p "/usr/local/lib/mh/") "/usr/local/lib/mh/")
83 "Directory of MH library") 84 (t "/usr/local/bin/mh/"))
85 "Directory of MH library.")
84 86
85(defvar rmail-file-name "~/RMAIL" 87(defvar rmail-file-name "~/RMAIL"
86 "Name of user's primary mail file.") 88 "Name of user's primary mail file.")