aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatsumi Yamaoka2010-08-31 23:30:11 +0000
committerKatsumi Yamaoka2010-08-31 23:30:11 +0000
commita2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e (patch)
treec6ff73d6dd647d8affe4ddd1674395325b0d4b37
parent2cdd366f840d28efb582bd5a12f2cc8f5d7d7bf1 (diff)
downloademacs-a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e.tar.gz
emacs-a2b2dd84f4fba3ac108b13d6e475e94fc20b6c3e.zip
message.texi: Fix some syntax errors in the last check-in; by Lars Magne Ingebrigtsen <larsi@gnus.org>.
-rw-r--r--doc/misc/message.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/misc/message.texi b/doc/misc/message.texi
index fb39107d3a8..8374ed05223 100644
--- a/doc/misc/message.texi
+++ b/doc/misc/message.texi
@@ -192,26 +192,26 @@ to match addresses to be pruned.
192 192
193It's complicated to explain, but it's easy to use. 193It's complicated to explain, but it's easy to use.
194 194
195For instance, if you get an email from @samp{foo@example.org}, but 195For instance, if you get an email from @samp{foo@@example.org}, but
196@samp{foo@zot.example.org} is also in the @code{Cc} list, then your 196@samp{foo@@zot.example.org} is also in the @code{Cc} list, then your
197wide reply will go out to both these addresses, since they are unique. 197wide reply will go out to both these addresses, since they are unique.
198 198
199To avoid this, do something like the following: 199To avoid this, do something like the following:
200 200
201@code 201@lisp
202(setq message-prune-recipient-rules 202(setq message-prune-recipient-rules
203 '(("^\\([^@]+\\)@\\(.*\\)" "\\1@.*[.]\\2"))) 203 '(("^\\([^@]+\\)@\\(.*\\)" "\\1@.*[.]\\2")))
204@end code 204@end lisp
205 205
206If, for instance, you want all wide replies that involve messages from 206If, for instance, you want all wide replies that involve messages from
207@samp{cvs@example.org} to go to that address, and nowhere else (i.e., 207@samp{cvs@@example.org} to go to that address, and nowhere else (i.e.,
208remove all other recipients if @samp{cvs@example.org} is in the 208remove all other recipients if @samp{cvs@@example.org} is in the
209recipient list: 209recipient list:
210 210
211@code 211@lisp
212(setq message-prune-recipient-rules 212(setq message-prune-recipient-rules
213 '(("cvs@example.org" "."))) 213 '(("cvs@example.org" ".")))
214@end code 214@end lisp
215 215
216@vindex message-wide-reply-confirm-recipients 216@vindex message-wide-reply-confirm-recipients
217If @code{message-wide-reply-confirm-recipients} is non-@code{nil} you 217If @code{message-wide-reply-confirm-recipients} is non-@code{nil} you