aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/paths.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index e5011b8d568..62a0b9f16ff 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -103,7 +103,9 @@ Its name should end with a slash.")
103(defconst sendmail-program 103(defconst sendmail-program
104 (if (file-exists-p "/usr/lib/sendmail") 104 (if (file-exists-p "/usr/lib/sendmail")
105 "/usr/lib/sendmail" 105 "/usr/lib/sendmail"
106 "fakemail") ;In ../etc, to interface to /bin/mail. 106 (if (file-exists-p "/usr/ucblib/sendmail")
107 "/usr/ucblib/sendmail"
108 "fakemail")) ;In ../etc, to interface to /bin/mail.
107 "Program used to send messages.") 109 "Program used to send messages.")
108 110
109(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") 111(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")