mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
* gnus-art.el (gnus-article-x-face-command): Use
gnus-article-compface-xbm if bound.
This commit is contained in:
parent
282f783156
commit
3cc82ee498
@ -1,3 +1,8 @@
|
||||
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
|
||||
|
@ -207,8 +207,10 @@ regexp. If it matches, the text in question is not a signature."
|
||||
(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 -"))
|
||||
|
Loading…
Reference in New Issue
Block a user