(uncompface-use-external): Default to nil.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 12 Feb 2004 04:21:28 +0000 (04:21 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 12 Feb 2004 04:21:28 +0000 (04:21 +0000)
lisp/ChangeLog
lisp/compface.el

index 27b9565..e0a2e49 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-12  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * compface.el (uncompface-use-external): Default to nil.
+
 2004-02-12  Jesper Harder  <harder@ifa.au.dk>
 
        * nntp.el (nntp-erase-buffer): New function.
index b9fc657..0c4c4b2 100644 (file)
   "X-Face image conversion."
   :group 'extensions)
 
-(defcustom uncompface-use-external (and (not noninteractive)
-                                       (executable-find "uncompface")
-                                       (executable-find "icontopbm")
-                                       t)
-  "*Non-nil means use the external `uncompface' and `icontopbm' programs.
-If this variable is set to nil, use the internal Lisp-based function."
+(defcustom uncompface-use-external nil
+  "*nil means use the internal ELisp-based uncompface program.
+If you aren't satisfied with the speed, try to alter the value.  In
+that case, you need to have the external `uncompface' and `icontopbm'
+programs installed."
   :type 'boolean
   :group 'compface)