]> git.eshelyaron.com Git - emacs.git/commitdiff
(sendmail-program): Look first in /usr/sbin.
authorRichard M. Stallman <rms@gnu.org>
Thu, 26 Jun 1997 07:21:42 +0000 (07:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 26 Jun 1997 07:21:42 +0000 (07:21 +0000)
lisp/paths.el

index 96536a1b4a1adb4be0c972e688eb59ba0350d476..0f5bd956a29d8feccaf91addab930cb62ae2f5a2 100644 (file)
@@ -113,8 +113,8 @@ Its name should end with a slash.")
 
 (defconst sendmail-program
   (cond
-    ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
     ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
+    ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
     ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
     (t "fakemail"))                    ;In ../etc, to interface to /bin/mail.
   "Program used to send messages.")