From d1d79bc71f3d26685768243338ec4ea2bd115d35 Mon Sep 17 00:00:00 2001 From: "Kurt A. Schoens" Date: Fri, 6 Feb 1981 17:36:53 -0800 Subject: [PATCH] Now takes -N flag to suppress initial header printing SCCS-vsn: usr.bin/mail/lex.c 1.14 --- usr/src/usr.bin/mail/lex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.bin/mail/lex.c b/usr/src/usr.bin/mail/lex.c index ad54618490..f76c673597 100644 --- a/usr/src/usr.bin/mail/lex.c +++ b/usr/src/usr.bin/mail/lex.c @@ -8,7 +8,7 @@ * Lexical processing of commands. */ -static char *SccsId = "@(#)lex.c 1.13 %G%"; +static char *SccsId = "@(#)lex.c 1.14 %G%"; /* * Set up editing on the given file name. @@ -504,7 +504,7 @@ announce(pr) if (pr && value("quiet") == NOSTR) printf(greeting, version); dot = &message[mdot - 1]; - if (msgCount > 0) + if (msgCount > 0 && !noheader) headers(vec); } -- 2.20.1