diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2010-09-25 13:43:27 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2010-09-25 13:43:27 +0000 |
commit | 56d95d0231f536e64cdf67c65537d4db4593093c (patch) | |
tree | 607b80cda553aa1feced50e128c88b9cfc9cd7fe /lisp/gnus/gnus-ems.el | |
parent | a41db1075d18d0a49c1cd02e6120b23926cbd203 (diff) | |
download | emacs-56d95d0231f536e64cdf67c65537d4db4593093c.tar.gz emacs-56d95d0231f536e64cdf67c65537d4db4593093c.tar.bz2 emacs-56d95d0231f536e64cdf67c65537d4db4593093c.zip |
gnus-ems.el (gnus-put-image):Don't put any non-blank text into the buffer when inserting images.
Diffstat (limited to 'lisp/gnus/gnus-ems.el')
-rw-r--r-- | lisp/gnus/gnus-ems.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-ems.el b/lisp/gnus/gnus-ems.el index 7bc59bf1b69..9c395dbf24a 100644 --- a/lisp/gnus/gnus-ems.el +++ b/lisp/gnus/gnus-ems.el @@ -276,7 +276,7 @@ (defun gnus-put-image (glyph &optional string category) (let ((point (point))) - (insert-image glyph (or string "*")) + (insert-image glyph (or string " ")) (put-text-property point (point) 'gnus-image-category category) (unless string (put-text-property (1- (point)) (point) |