comparison man/message.texi @ 90072:cb67264d6096

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-2 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-83 - miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-84 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-3 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-4 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-5 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-6 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-11 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-12 Remove "-face" suffix from lazy-highlight face name * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-13 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-16 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-17 Merge from gnus--rel--5.10 * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-18 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-21 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-22 <no summary provided> * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-23 - miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-39 Update from CVS * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-40 Fix regressions from latest reftex update * miles@gnu.org--gnu-2005/gnus--rel--5.10--base-0 tag of miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-82 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-1 Merge from emacs--cvs-trunk--0 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-2 Merge from miles@gnu.org--gnu-2004 * miles@gnu.org--gnu-2005/gnus--rel--5.10--patch-3 Merge from emacs--cvs-trunk--0
author Miles Bader <miles@gnu.org>
date Sun, 16 Jan 2005 03:40:12 +0000
parents f2ebccfa87d4 cf93431040c9
children 4da4a09e8b1b
comparison
equal deleted inserted replaced
90071:f6b4d0ebf147 90072:cb67264d6096
144 @end lisp 144 @end lisp
145 145
146 This function will be called narrowed to the head of the article that is 146 This function will be called narrowed to the head of the article that is
147 being replied to. 147 being replied to.
148 148
149 As you can see, this function should return a string if it has an 149 As you can see, this function should return a list. In this case, it
150 opinion as to what the To header should be. If it does not, it should 150 returns @code{((To . "Whom"))} if it has an opinion as to what the To
151 just return @code{nil}, and the normal methods for determining the To 151 header should be. If it does not, it should just return @code{nil}, and
152 header will be used. 152 the normal methods for determining the To header will be used.
153 153
154 This function can also return a list. In that case, each list element 154 Each list element should be a cons, where the @sc{car} should be the
155 should be a cons, where the @sc{car} should be the name of a header 155 name of a header (e.g. @code{Cc}) and the @sc{cdr} should be the header
156 (e.g. @code{Cc}) and the @sc{cdr} should be the header value 156 value (e.g. @samp{larsi@@ifi.uio.no}). All these headers will be
157 (e.g. @samp{larsi@@ifi.uio.no}). All these headers will be inserted into 157 inserted into the head of the outgoing mail.
158 the head of the outgoing mail.
159 158
160 159
161 @node Wide Reply 160 @node Wide Reply
162 @section Wide Reply 161 @section Wide Reply
163 162