summaryrefslogtreecommitdiff
path: root/man/gnus-faq.texi
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2004-10-14 07:33:19 +0000
committerMiles Bader <miles@gnu.org>2004-10-14 07:33:19 +0000
commitebbeed623cb9902e520fc67d6d271e222e16867f (patch)
treed84a4436a44adbc53082bf34818a984809e914c4 /man/gnus-faq.texi
parent7ba426fb285aa6abc6f6657ad8d02a8e55907715 (diff)
downloademacs-ebbeed623cb9902e520fc67d6d271e222e16867f.tar.gz
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-615
Merge from gnus--rel--5.10 Patches applied: * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-46 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-47 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-48 Update from CVS * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-49 Add {arch}/=commit-merge-make-log * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-50 {arch}/=commit-merge-make-log: Don't die if there are no ChangeLog changes
Diffstat (limited to 'man/gnus-faq.texi')
-rw-r--r--man/gnus-faq.texi11
1 files changed, 7 insertions, 4 deletions
diff --git a/man/gnus-faq.texi b/man/gnus-faq.texi
index 6f0fddc5562..5d243f8a02e 100644
--- a/man/gnus-faq.texi
+++ b/man/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