diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/compface.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 4047037cb72..535271a2556 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-08 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * compface.el (uncompface): Make buffer unibyte. | ||
| 4 | |||
| 1 | 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * mail-source.el (mail-source-value): | 7 | * mail-source.el (mail-source-value): |
diff --git a/lisp/gnus/compface.el b/lisp/gnus/compface.el index 2f81ab0238e..34f60cd024b 100644 --- a/lisp/gnus/compface.el +++ b/lisp/gnus/compface.el | |||
| @@ -33,6 +33,7 @@ Requires the external programs `uncompface', and `icontopbm'. On a | |||
| 33 | GNU/Linux system these might be in packages with names like `compface' | 33 | GNU/Linux system these might be in packages with names like `compface' |
| 34 | or `faces-xface' and `netpbm' or `libgr-progs', for instance." | 34 | or `faces-xface' and `netpbm' or `libgr-progs', for instance." |
| 35 | (with-temp-buffer | 35 | (with-temp-buffer |
| 36 | (unless (featurep 'xemacs) (set-buffer-multibyte nil)) | ||
| 36 | (insert face) | 37 | (insert face) |
| 37 | (let ((coding-system-for-read 'raw-text) | 38 | (let ((coding-system-for-read 'raw-text) |
| 38 | ;; At least "icontopbm" doesn't work with Windows because | 39 | ;; At least "icontopbm" doesn't work with Windows because |