+2002-09-21 Rob Browning <rlb@defaultvalue.org>
+
+ * gnus-art.el (gnus-article-x-face-command): Use
+ gnus-article-compface-xbm if bound.
+
2002-09-18 Rob Browning <rlb@defaultvalue.org>
* gnus-art.el (gnus-article-x-face-command): Don't use
(if (and (fboundp 'image-type-available-p)
(image-type-available-p 'xbm))
'gnus-article-display-xface
- (if (eq 0 (string-match "#define"
- (shell-command-to-string "uncompface -X")))
+ (if (or (and (boundp 'gnus-article-compface-xbm)
+ gnus-article-compface-xbm)
+ (eq 0 (string-match "#define"
+ (shell-command-to-string "uncompface -X"))))
"{ echo '/* Width=48, Height=48 */'; uncompface; } | display -"
"{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | \
display -"))