summaryrefslogtreecommitdiff
path: root/usr.bin/mg
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-05-23 22:01:45 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-05-23 22:01:45 +0000
commitb79e4794c9bb327f4c587d48111e7251225efe41 (patch)
tree551372ce778cdf6385970c9bbeccfa9536e60548 /usr.bin/mg
parent23848391a21020322047fb4462366a8a414ed1e6 (diff)
pretty
Diffstat (limited to 'usr.bin/mg')
-rw-r--r--usr.bin/mg/echo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mg/echo.c b/usr.bin/mg/echo.c
index 51f5518c181..b0391d8e790 100644
--- a/usr.bin/mg/echo.c
+++ b/usr.bin/mg/echo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: echo.c,v 1.8 2001/05/23 21:42:34 art Exp $ */
+/* $OpenBSD: echo.c,v 1.9 2001/05/23 22:01:44 art Exp $ */
/*
* Echo line reading and writing.
@@ -357,9 +357,9 @@ complt(flags, c, buf, cpos)
if ((flags & EFFUNC) != 0) {
buf[cpos] = '\0';
wholelist = lh = complete_function_list(buf, c);
- } else if ((flags & EFBUF) != 0)
+ } else if ((flags & EFBUF) != 0) {
lh = &(bheadp->b_list);
- else if ((flags & EFFILE) != 0) {
+ } else if ((flags & EFFILE) != 0) {
buf[cpos] = '\0';
wholelist = lh = make_file_list(buf);
} else