From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,44b0b57dd5d8f69 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.66.82.195 with SMTP id k3mr672463pay.23.1344221881534; Sun, 05 Aug 2012 19:58:01 -0700 (PDT) MIME-Version: 1.0 Path: g9ni19419379pbo.0!nntp.google.com!news.glorb.com!feeder.erje.net!newsfeed.straub-nv.de!nuzba.szn.dk!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: List of Negative Language rules? Date: Sun, 5 Aug 2012 21:57:57 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <5b1caa0f-464a-4ff9-881e-202e4766f0df@googlegroups.com> <1949c50a-553a-4d40-92f0-9a5c0663cd55@googlegroups.com> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1344221880 27274 69.95.181.76 (6 Aug 2012 02:58:00 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Mon, 6 Aug 2012 02:58:00 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2012-08-05T21:57:57-05:00 List-Id: "Patrick" wrote in message news:1949c50a-553a-4d40-92f0-9a5c0663cd55@googlegroups.com... > Hi Vasiliy > > It was easy to redo the grepping with the small c option "-c" > > > :cat Anotated_Reference_Manual_As_Text | grep -c " cannot " > 279 > > :cat Anotated_Reference_Manual_As_Text | grep -c " must not " > 3 "must not" is not allowed by ISO rules, so that wording can only appear in non-normative text (or by mistake, there are a few in Ada 2005, since corrected). The correct wording is "shall not", which you didn't look for. > :cat Anotated_Reference_Manual_As_Text | grep -c " should not " > 46 Randy.