From 25581a94c5113eb78b2baf7110408df96efc4418 Mon Sep 17 00:00:00 2001 From: David Levine Date: Thu, 7 Jun 2012 22:07:54 -0500 Subject: [PATCH] Changed repl and dist default to -noatfile. --- docs/pending-release-notes | 4 +++- man/dist.man | 2 +- man/repl.man | 2 +- uip/dist.c | 2 +- uip/repl.c | 2 +- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/pending-release-notes b/docs/pending-release-notes index 3d3da72..23c4f4f 100644 --- a/docs/pending-release-notes +++ b/docs/pending-release-notes @@ -3,10 +3,12 @@ Things to add to the release notes for the next full release: Backward incompatibilities: - Changed exit status of each nmh command's -version and -help switches from 1 to 0. - - The following environment variables were deprecated in nmh 1.5 and are removed from this release: MHPOPDEBUG (use -snoop command line switch instead) MM_NOASK (use -nolist and -nopause command line switches instead) NOMHNPROC (use -nocheckmime command line switch instead) FACEPROC (undocumented faceproc feature removed) +- Changed repl and dist default to -noatfile. The default of -atfile + was deprecated in nmh 1.5. If there are no requests to maintain + -atfile, it will be removed in the future. diff --git a/man/dist.man b/man/dist.man index ded4937..b332604 100644 --- a/man/dist.man +++ b/man/dist.man @@ -234,7 +234,7 @@ comp(1), forw(1), repl(1), send(1), whatnow(1) .RB ` \-noannotate ' .RB ` \-nodraftfolder ' .RB ` \-inplace ' -.RB ` \-atfile ' +.RB ` \-noatfile ' .fi .SH CONTEXT diff --git a/man/repl.man b/man/repl.man index 9e0ba5d..3ae3fd5 100644 --- a/man/repl.man +++ b/man/repl.man @@ -527,7 +527,7 @@ mhbuild(1), comp(1), forw(1), send(1), whatnow(1), mh\-format(5) .RB ` \-inplace ' .RB ` \-nomime ' .RB ` \-noquery ' -.RB ` \-atfile ' +.RB ` \-noatfile ' .RB ` "\-width\ 72" ' .fi diff --git a/uip/dist.c b/uip/dist.c index 40732dc..b7799be 100644 --- a/uip/dist.c +++ b/uip/dist.c @@ -89,7 +89,7 @@ main (int argc, char **argv) int anot = 0, inplace = 1, nedit = 0; int nwhat = 0, i, in, isdf = 0, out; int outputlinelen = OUTPUTLINELEN; - int dat[5], atfile = 1; + int dat[5], atfile = 0; char *cp, *cwd, *maildir, *msgnam, *dfolder = NULL; char *dmsg = NULL, *ed = NULL, *file = NULL, *folder = NULL; char *form = NULL, *msg = NULL, buf[BUFSIZ], drft[BUFSIZ]; diff --git a/uip/repl.c b/uip/repl.c index c387da7..cc8a86b 100644 --- a/uip/repl.c +++ b/uip/repl.c @@ -142,7 +142,7 @@ main (int argc, char **argv) int i, isdf = 0; int anot = 0, inplace = 1; int nedit = 0, nwhat = 0; - int atfile = 1; + int atfile = 0; int fmtproc = -1; char *cp, *cwd, *dp, *maildir, *file = NULL; char *folder = NULL, *msg = NULL, *dfolder = NULL; -- 1.7.10.4