aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-09-27 12:09:35 +0000
committerGerd Moellmann2001-09-27 12:09:35 +0000
commitbd2bc09ff5d679976397674c50c89dce3ae8cd98 (patch)
tree763aae168fe760e2bc242923ebc20f0866ffdc75
parentf7d5d963205e9dc19e4253e16dcc557b5e61ee62 (diff)
downloademacs-bd2bc09ff5d679976397674c50c89dce3ae8cd98.tar.gz
emacs-bd2bc09ff5d679976397674c50c89dce3ae8cd98.zip
(gnus-article-display-xface): Skip over previously
inserted images.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-ems.el2
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index aa08e0f922d..e16c3bd337d 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12001-09-27 Gerd Moellmann <gerd@gnu.org>
2
3 * gnus-ems.el (gnus-article-display-xface): Skip over previously
4 inserted images.
5
12001-09-19 Sam Steingold <sds@gnu.org> 62001-09-19 Sam Steingold <sds@gnu.org>
2 7
3 * gnus-win.el (gnus-buffer-configuration): Respect 8 * gnus-win.el (gnus-buffer-configuration): Respect
diff --git a/lisp/gnus/gnus-ems.el b/lisp/gnus/gnus-ems.el
index d668d5c056f..ba4ecfefcac 100644
--- a/lisp/gnus/gnus-ems.el
+++ b/lisp/gnus/gnus-ems.el
@@ -272,6 +272,8 @@ for XEmacs."
272 (when image 272 (when image
273 (goto-char (point-min)) 273 (goto-char (point-min))
274 (re-search-forward "^From:" nil 'move) 274 (re-search-forward "^From:" nil 'move)
275 (while (get-text-property (point) 'display)
276 (goto-char (next-single-property-change (point) 'display)))
275 (insert-image image)))))) 277 (insert-image image))))))
276 278
277(provide 'gnus-ems) 279(provide 'gnus-ems)