Add support for the 'flipr' option per IEEE 1003.1-2001.

This commit is contained in:
Mike Heffner 2002-06-25 05:34:27 +00:00
parent 7d409b3221
commit 0077673e56
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98805
2 changed files with 10 additions and 2 deletions

View File

@ -194,7 +194,7 @@ int
respond(msgvec)
int *msgvec;
{
if (value("Replyall") == NULL)
if (value("Replyall") == NULL && value("flipr") == NULL)
return (dorespond(msgvec));
else
return (doRespond(msgvec));
@ -588,7 +588,7 @@ int
Respond(msgvec)
int *msgvec;
{
if (value("Replyall") == NULL)
if (value("Replyall") == NULL && value("flipr") == NULL)
return (doRespond(msgvec));
else
return (dorespond(msgvec));

View File

@ -964,6 +964,14 @@ If defined, the first character of this option gives the character to
use in place of
.Ql ~
to denote escapes.
.It Va flipr
Reverses the sense of
.Ic reply
and
.Ic Reply
commands.
Default is
.Va noflipr .
.It Va folder
The name of the directory to use for storing folders of
messages.