diff options
| author | Katsumi Yamaoka <yamaoka@jpl.org> | 2008-04-08 02:55:25 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2008-04-08 02:55:25 +0000 |
| commit | 73f2395ef32238452f4d34199baabd3bfce66647 (patch) | |
| tree | 1a6f23db5fe17de537c7bca6d90e03e9bf0085ba | |
| parent | 239cfbd72601f10916c13e9bf54183062c74d43e (diff) | |
| download | emacs-73f2395ef32238452f4d34199baabd3bfce66647.tar.gz | |
(uncompface): Make buffer unibyte.
| -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 @@ +2008-04-08 Katsumi Yamaoka <yamaoka@jpl.org> + + * compface.el (uncompface): Make buffer unibyte. + 2008-04-07 Stefan Monnier <monnier@iro.umontreal.ca> * 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 GNU/Linux system these might be in packages with names like `compface' or `faces-xface' and `netpbm' or `libgr-progs', for instance." (with-temp-buffer + (unless (featurep 'xemacs) (set-buffer-multibyte nil)) (insert face) (let ((coding-system-for-read 'raw-text) ;; At least "icontopbm" doesn't work with Windows because |
