* lisp/mm-url.el (mm-url-program): Use `exec-installed-p' instead of
authorari <ari>
Sun, 24 Nov 2002 14:26:03 +0000 (14:26 +0000)
committerari <ari>
Sun, 24 Nov 2002 14:26:03 +0000 (14:26 +0000)
`executable-find'.

ChangeLog
lisp/mm-url.el

index fcc3ca2..79622b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-24  ARISAWA Akihiro  <ari@mbf.sphere.ne.jp>
+
+       * lisp/mm-url.el (mm-url-program): Use `exec-installed-p' instead of
+       `executable-find'.
+
 2002-10-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
 
        * lisp/dgnushack.el (dgnushack-bind-colon-keywords): Protect
index fb19b42..808a156 100644 (file)
@@ -58,7 +58,7 @@
 (defcustom mm-url-program
   (cond
    ((exec-installed-p "wget") 'wget)
-   ((executable-find "w3m") 'w3m)
+   ((exec-installed-p "w3m") 'w3m)
    ((exec-installed-p "lynx") 'lynx)
    ((exec-installed-p "curl") 'curl)
    (t "GET"))