From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from minnie.tuhs.org (minnie.tuhs.org [45.79.103.53]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id b8f3f482 for ; Tue, 24 Sep 2019 20:31:13 +0000 (UTC) Received: by minnie.tuhs.org (Postfix, from userid 112) id 339AE9BA2D; Wed, 25 Sep 2019 06:31:12 +1000 (AEST) Received: from minnie.tuhs.org (localhost [127.0.0.1]) by minnie.tuhs.org (Postfix) with ESMTP id 3A7209B9B4; Wed, 25 Sep 2019 06:30:59 +1000 (AEST) Received: by minnie.tuhs.org (Postfix, from userid 112) id 5F03A9B9B4; Wed, 25 Sep 2019 06:30:56 +1000 (AEST) Received: from wopr.sciops.net (wopr.sciops.net [216.126.196.60]) by minnie.tuhs.org (Postfix) with ESMTPS id C632993F38 for ; Wed, 25 Sep 2019 06:30:55 +1000 (AEST) Received: (qmail 81464 invoked by uid 1001); 24 Sep 2019 13:30:52 -0700 Date: Tue, 24 Sep 2019 13:30:52 -0700 From: Kurt H Maier To: Larry McVoy Message-ID: <20190924203052.GB74746@wopr> References: <201909241710.x8OHAbF8014895@freefriends.org> <20190924194213.GA74746@wopr> <20190924195835.GB21722@mcvoy.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190924195835.GB21722@mcvoy.com> Subject: Re: [TUHS] Revived! The 10 Edition spell program! X-BeenThere: tuhs@minnie.tuhs.org X-Mailman-Version: 2.1.26 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 Tue, Sep 24, 2019 at 12:58:35PM -0700, Larry McVoy wrote: > > How is this better than spell(1) on Linux? Assuming you're talking about GNU spell, it suffers from feature creep (localization stuff, hard-coded markup filters, etc) which makes the code less pleasant to work with. I'm not sure why my spellchecker needs curses support, but GNU spell has it. Also I don't like having to worry about licensing cruft when I e.g. copy a binary over to a system at work. If I can do my work with 5% the source code, that's generally my plan. khm