diff options
| author | Bill Fumerola <billf@FreeBSD.org> | 1999-07-04 17:26:16 +0000 |
|---|---|---|
| committer | Bill Fumerola <billf@FreeBSD.org> | 1999-07-04 17:26:16 +0000 |
| commit | 9ef5c48befdfa36ad5ef5e0ae898e7ca9397abcc (patch) | |
| tree | b5a6ada1388aeb7553694b736fde6dc7d114dbff /usr.bin/indent/indent.c | |
| parent | adbaeacdd6ef7704c5427e2ed81c4364d91c6e07 (diff) | |
Notes
Diffstat (limited to 'usr.bin/indent/indent.c')
| -rw-r--r-- | usr.bin/indent/indent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/indent/indent.c b/usr.bin/indent/indent.c index ff5e4203a0eb..c903d705765e 100644 --- a/usr.bin/indent/indent.c +++ b/usr.bin/indent/indent.c @@ -46,7 +46,7 @@ static const char copyright[] = static char sccsid[] = "@(#)indent.c 5.17 (Berkeley) 6/7/93"; #endif static const char rcsid[] = - "$Id: indent.c,v 1.2 1997/07/15 09:50:59 charnier Exp $"; + "$Id: indent.c,v 1.3 1998/10/18 04:46:24 thepish Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -208,16 +208,16 @@ main(argc, argv) else set_option(argv[i]); } /* end of for */ - if (input == 0) { + if (input == 0) input = stdin; - } - if (output == 0) + if (output == 0) { if (troff || input == stdin) output = stdout; else { out_name = in_name; bakcopy(); } + } if (ps.com_ind <= 1) ps.com_ind = 2; /* dont put normal comments before column 2 */ if (troff) { |
