summaryrefslogtreecommitdiff
path: root/sys/src/cmd/5e/5e.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/src/cmd/5e/5e.c')
-rw-r--r--sys/src/cmd/5e/5e.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/src/cmd/5e/5e.c b/sys/src/cmd/5e/5e.c
index 238bcadaa..85367c3ee 100644
--- a/sys/src/cmd/5e/5e.c
+++ b/sys/src/cmd/5e/5e.c
@@ -4,6 +4,7 @@
#include "dat.h"
#include "fns.h"
+int vfp = 1;
int nflag, pflag, bflag;
Ref nproc;
@@ -49,7 +50,7 @@ cleanup(void)
static void
usage(void)
{
- fprint(2, "usage: 5e [-npbf] text [...]\n");
+ fprint(2, "usage: 5e [-npbF] text [...]\n");
exits(nil);
}
@@ -105,6 +106,7 @@ main(int argc, char **argv)
case 'p': pflag++; break;
case 'b': bflag++; break;
case 'f': vfp = 1; break;
+ case 'F': vfp = 0; break;
default: usage();
} ARGEND;
if(argc < 1)