X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=texi%2Fgnus-faq.texi;h=2b875a9d30e04c9e6b98491bf349c1c88f26323c;hb=747e12ff1c149822165748232ac93d20e359c2ca;hp=f70902fd375f79109893b8987c9aae191259a3e3;hpb=94acb9357f457591ddbae786d3d18c4544742d6d;p=elisp%2Fgnus.git- diff --git a/texi/gnus-faq.texi b/texi/gnus-faq.texi index f70902f..2b875a9 100644 --- a/texi/gnus-faq.texi +++ b/texi/gnus-faq.texi @@ -1776,11 +1776,14 @@ Answer: @example -(defadvice gnus-summary-reply (around reply-in-news activate) +(eval-after-load "gnus-msg" + '(unless (boundp 'gnus-confirm-mail-reply-to-news) + (defadvice gnus-summary-reply (around reply-in-news activate) + "Request confirmation when replying to news." (interactive) - (when (or (not (gnus-news-group-p gnus-newsgroup-name)) - (y-or-n-p "Really reply? ")) - ad-do-it)) + (when (or (not (gnus-news-group-p gnus-newsgroup-name)) + (y-or-n-p "Really reply by mail to article author? ")) + ad-do-it)))) @end example @ifnottex