Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Dec 2013 06:27:55 +0000 (UTC)
From:      Xin LI <delphij@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r259058 - head/usr.bin/bc
Message-ID:  <201312070627.rB76RtGr022954@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: delphij
Date: Sat Dec  7 06:27:54 2013
New Revision: 259058
URL: http://svnweb.freebsd.org/changeset/base/259058

Log:
  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

Modified:
  head/usr.bin/bc/bc.1
  head/usr.bin/bc/bc.y

Modified: head/usr.bin/bc/bc.1
==============================================================================
--- head/usr.bin/bc/bc.1	Sat Dec  7 02:20:22 2013	(r259057)
+++ head/usr.bin/bc/bc.1	Sat Dec  7 06:27:54 2013	(r259058)
@@ -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

Modified: head/usr.bin/bc/bc.y
==============================================================================
--- head/usr.bin/bc/bc.y	Sat Dec  7 02:20:22 2013	(r259057)
+++ head/usr.bin/bc/bc.y	Sat Dec  7 06:27:54 2013	(r259058)
@@ -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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312070627.rB76RtGr022954>