From f09713ea1a15ddbe068db8557e2f1be87c6d1f1b Mon Sep 17 00:00:00 2001 From: Katsumi Yamaoka Date: Tue, 23 Oct 2007 10:27:41 +0000 Subject: [PATCH] (gnus-article-highlight-signature) (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a button overlay without the front stickiness. --- lisp/ChangeLog | 6 ++++++ lisp/gnus-art.el | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b7a4fa23..427a0db31 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-10-23 Katsumi Yamaoka + + * gnus-art.el (gnus-article-highlight-signature) + (gnus-insert-prev-page-button, gnus-insert-next-page-button): Make a + button overlay without the front stickiness. + 2007-10-22 Kevin Greiner * gnus-agent.el (gnus-agent-expire-group-1): The check for an unsorted diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index 488840e38..dfa26bc05 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -7312,7 +7312,7 @@ It does this by highlighting everything after (save-restriction (when (and gnus-signature-face (gnus-article-narrow-to-signature)) - (gnus-overlay-put (gnus-make-overlay (point-min) (point-max)) + (gnus-overlay-put (gnus-make-overlay (point-min) (point-max) nil t) 'face gnus-signature-face) (widen) (gnus-article-search-signature) @@ -7760,7 +7760,7 @@ url is put as the `gnus-button-url' overlay property on the button." (1- (point)) (point))) (when gnus-article-button-face - (gnus-overlay-put (gnus-make-overlay b e) + (gnus-overlay-put (gnus-make-overlay b e nil t) 'face gnus-article-button-face)) (widget-convert-button 'link b e @@ -7796,7 +7796,7 @@ url is put as the `gnus-button-url' overlay property on the button." (1- (point)) (point))) (when gnus-article-button-face - (gnus-overlay-put (gnus-make-overlay b e) + (gnus-overlay-put (gnus-make-overlay b e nil t) 'face gnus-article-button-face)) (widget-convert-button 'link b e -- 2.25.1