From c64c63b9dd661013fcba0e7e1fcb65c7a0094964 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Sat, 7 Dec 2013 06:27:54 +0000 Subject: [PATCH] Remove mention of the compatibility option 'q', which is intentionally undocumented and its only purpose is that we do not bail out when used as a drop-in replacement of a different implementation. PR: docs/184550 MFC after: 2 weeks --- usr.bin/bc/bc.1 | 2 +- usr.bin/bc/bc.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/bc/bc.1 b/usr.bin/bc/bc.1 index 4f071e00c59..4f3eff01fc0 100644 --- a/usr.bin/bc/bc.1 +++ b/usr.bin/bc/bc.1 @@ -43,7 +43,7 @@ .Nd arbitrary-precision arithmetic language and calculator .Sh SYNOPSIS .Nm bc -.Op Fl chlqv +.Op Fl chlv .Op Fl e Ar expression .Op Ar file ... .Sh DESCRIPTION diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y index a802f5a3ef2..a819e3f51f0 100644 --- a/usr.bin/bc/bc.y +++ b/usr.bin/bc/bc.y @@ -1023,7 +1023,7 @@ static void usage(void) { - fprintf(stderr, "usage: %s [-chlqv] [-e expression] [file ...]\n", + fprintf(stderr, "usage: %s [-chlv] [-e expression] [file ...]\n", __progname); exit(1); }