+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
(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"))