diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-05-29 08:34:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-05-29 08:34:07 +0000 |
commit | c1b1a4f3ef3bbe140ad4db7568e82814f81e2e2e (patch) | |
tree | 7bf454fe1237ee37b4d27a4af94f4ef7f16419de /lisp/gnus/gnus-cite.el | |
parent | 6d2957c46015fc0ad06448fc8b41195911ec5581 (diff) | |
download | emacs-c1b1a4f3ef3bbe140ad4db7568e82814f81e2e2e.tar.gz |
(gnus-cite-add-face): Set overlay's evaporate property.
Diffstat (limited to 'lisp/gnus/gnus-cite.el')
-rw-r--r-- | lisp/gnus/gnus-cite.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/gnus/gnus-cite.el b/lisp/gnus/gnus-cite.el index 6053b2ae502..090a365f994 100644 --- a/lisp/gnus/gnus-cite.el +++ b/lisp/gnus/gnus-cite.el @@ -1017,6 +1017,7 @@ See also the documentation for `gnus-article-highlight-citation'." (when (< from to) (push (setq overlay (gnus-make-overlay from to)) gnus-cite-overlay-list) + (gnus-overlay-put overlay 'evaporate t) (gnus-overlay-put overlay 'face face)))))) (defun gnus-cite-toggle (prefix) |