[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/gnus/gnus-art.el
From: |
ShengHuo ZHU |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/gnus/gnus-art.el |
Date: |
Sat, 21 Sep 2002 15:57:12 -0400 |
Index: emacs/lisp/gnus/gnus-art.el
diff -c emacs/lisp/gnus/gnus-art.el:1.43 emacs/lisp/gnus/gnus-art.el:1.44
*** emacs/lisp/gnus/gnus-art.el:1.43 Wed Sep 18 13:55:26 2002
--- emacs/lisp/gnus/gnus-art.el Sat Sep 21 15:57:11 2002
***************
*** 207,214 ****
(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")))
"{ echo '/* Width=48, Height=48 */'; uncompface; } | display -"
"{ echo '/* Width=48, Height=48 */'; uncompface; } | icontopbm | \
display -"))
--- 207,216 ----
(if (and (fboundp 'image-type-available-p)
(image-type-available-p 'xbm))
'gnus-article-display-xface
! (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 -"))