From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from scc-mailout-kit-02.scc.kit.edu (scc-mailout-kit-02.scc.kit.edu [129.13.231.82]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTP id e09be4b9 for ; Sun, 10 Jul 2016 09:09:01 -0500 (EST) Received: from asta-nat.asta.uni-karlsruhe.de ([172.22.63.82] helo=hekate.usta.de) by scc-mailout-kit-02.scc.kit.edu with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (envelope-from ) id 1bMFPm-0003cp-Qs; Sun, 10 Jul 2016 16:09:00 +0200 Received: from donnerwolke.usta.de ([172.24.96.3]) by hekate.usta.de with esmtp (Exim 4.77) (envelope-from ) id 1bMFPm-00001z-Mc; Sun, 10 Jul 2016 16:08:58 +0200 Received: from athene.usta.de ([172.24.96.10]) by donnerwolke.usta.de with esmtp (Exim 4.84_2) (envelope-from ) id 1bMFPm-0007GD-5G; Sun, 10 Jul 2016 16:08:58 +0200 Received: from localhost (athene.usta.de [local]) by athene.usta.de (OpenSMTPD) with ESMTPA id d4657d14; Sun, 10 Jul 2016 16:08:58 +0200 (CEST) Date: Sun, 10 Jul 2016 16:08:58 +0200 From: Ingo Schwarze To: Svyatoslav Mishyn Crux Cc: tech@mdocml.bsd.lv Subject: Re: call for testing: mandoc-1.13.4 release candidate Message-ID: <20160710140858.GE14535@athene.usta.de> References: <20160709131158.GA6629@athene.usta.de> <20160709142813.GA13260@k8> X-Mailinglist: mdocml-tech Reply-To: tech@mdocml.bsd.lv MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160709142813.GA13260@k8> User-Agent: Mutt/1.6.2 (2016-07-01) Hi Svyatoslav, Svyatoslav Mishyn Crux wrote on Sat, Jul 09, 2016 at 05:28:20PM +0300: > more(1) doesn't have "-T" option. > Patch attached. Committed, thanks! Ingo > diff -Naur mdocml-1.13.4-a/main.c mdocml-1.13.4-b/main.c > --- mdocml-1.13.4-a/main.c 2016-07-09 14:15:54.000000000 +0300 > +++ mdocml-1.13.4-b/main.c 2016-07-09 17:19:16.138769535 +0300 > @@ -1055,11 +1055,11 @@ > break; > } > > - /* For more(1) and less(1), use the tag file. */ > + /* For less(1), use the tag file. */ > > if ((cmdlen = strlen(argv[0])) >= 4) { > cp = argv[0] + cmdlen - 4; > - if (strcmp(cp, "less") == 0 || strcmp(cp, "more") == 0) { > + if (strcmp(cp, "less") == 0) { > argv[argc++] = mandoc_strdup("-T"); > argv[argc++] = tag_files->tfn; > } -- To unsubscribe send an email to tech+unsubscribe@mdocml.bsd.lv