From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: tuhs-bounces@minnie.tuhs.org X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.1 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id 0f584d9d for ; Sun, 1 Jul 2018 23:20:34 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 78CCDA1DE9; Mon, 2 Jul 2018 09:20:33 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 2CAE9A1892; Mon, 2 Jul 2018 09:20:25 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=tuhs.org; s=dkim; t=1530487227; bh=IQ4Lr6r2JNxJKL+r6jINSlcN/A6yM5fsgsY64SpGW6U=; h=Date:From:To:References:In-Reply-To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Cc:From; b=0fcO5+KHtOC/mgJBL9vMmHdMP1Bz2+A0j3Nq0J2YP3nwx5yVBpjhMu7lanRCJUvNO HNW0GIRVURVg9jo2xXJMp/zdjmOO4zBFSvgCJO5OibqxU7h+QlfrMPsNygvpVWXk9Z YQC22i2v2RZMoTQ4PlkzC/3gx6wOmBp1R3dTfqm8= Received: by minnie.tuhs.org (Postfix, from userid 1000) id 9821CA183B; Mon, 2 Jul 2018 09:20:23 +1000 (AEST) Date: Mon, 2 Jul 2018 09:20:23 +1000 From: Warren Toomey To: Doug McIlroy Message-ID: <20180701232023.GB17726@minnie.tuhs.org> References: <201807010223.w612Nv7P094105@tahoe.cs.Dartmouth.EDU> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <201807010223.w612Nv7P094105@tahoe.cs.Dartmouth.EDU> User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [TUHS] Rivers, the ragged right, and BCPL roff (was: Spooky action at a distance in line adjustment...sometimes) X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: The Unix Heritage Society mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: tuhs@tuhs.org Errors-To: tuhs-bounces@minnie.tuhs.org Sender: "TUHS" On Sat, Jun 30, 2018 at 10:23:57PM -0400, Doug McIlroy wrote: >I edited the v7 manual and I believe I proofread every man page. How >could I have overlooked the misbehavior of the .li request*, which was >even then not in the reference manual's list of n/troff requests? >doug > >* .li causes the next line to be read literally, even if it begins >with a dot. Slightly Unix related, .li is in the version of roff which I wrote in a C-like language for the PDP-7 version of Unix: https://github.com/DoctorWkt/h-compiler/blob/master/roff/wktroff.c https://github.com/DoctorWkt/h-compiler/blob/master/roff/roff_manual https://github.com/DoctorWkt/h-compiler Cheers, Warren