From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, NICE_REPLY_A autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 30845 invoked from network); 28 Mar 2021 11:30:47 -0000 Received: from bsd.lv (HELO mandoc.bsd.lv) (66.111.2.12) by inbox.vuxu.org with ESMTPUTF8; 28 Mar 2021 11:30:47 -0000 Received: from fantadrom.bsd.lv (localhost [127.0.0.1]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 75756884 for ; Sun, 28 Mar 2021 06:30:46 -0500 (EST) Received: from mail-wr1-f50.google.com (mail-wr1-f50.google.com [209.85.221.50]) by mandoc.bsd.lv (OpenSMTPD) with ESMTP id 02376efe for ; Sun, 28 Mar 2021 06:30:43 -0500 (EST) Received: by mail-wr1-f50.google.com with SMTP id j18so10010111wra.2 for ; Sun, 28 Mar 2021 04:30:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsd-lv.20150623.gappssmtp.com; s=20150623; h=subject:from:to:references:message-id:date:user-agent:mime-version :in-reply-to:content-language:content-transfer-encoding; bh=pmuGa4zVhitjaY5exsBuBBCujDzC3VXXkA5F2JBbCYA=; b=sHZywVCb5jH8woJqP0wG5ya+AtICkOE79IkFKEDHk3TSQqN59Aj3eri8LhjKZrM7z6 R/WTu0dK2ymWrFrwkzPUXHd3Pq462lq2qJeT/YExehoTFilRDleLdl4g4NEd1di+XX9/ vd9EsFsB0uK+dcDo2EspcJpXmQFJ6MZE6dVvJVy7U8xQI+tcWHbPB4xf0PtUdNxcSuTA laCCc7sP5kxs7D1YN1aEmIH5OogCD7Ojh86/Ev4AR/3Lb2+NTuJPoVNtpmIvIBv2BAZ7 8bfnZl7OPU/RVT699WlSOhoNtLVTrq8mGcCg1VJ7U1uTlrfaqUH4NZfztt+9rtSm585k PjGg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:from:to:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=pmuGa4zVhitjaY5exsBuBBCujDzC3VXXkA5F2JBbCYA=; b=F0mAy4Kb2WS97ud8QgEawoZEtgjXeLAbvRJhlQGzbB1hf9qcLPjJptvcH80hA4o8QE QuXrImD/hhXBm9Bckb+CJBQB3Um8FrcFkBgIL1RavSLx7cQ00PA7tiF6OsLLJtZTYGjx ZHhmTMZ4qu1nu0z+tXPhTFIfX0b25pvGNc0WwZyAA1Zk7+ufiUq+7tYcJAgqk36hk4Qd K/WJU4Q/kiCl+CqYqww1uY4duCbzE2jhxIdm+fQFuWSOuRyyhIUaswCrXTJHRLgEapf1 7k4KyNq347zeY4ghunqenrR3bsLtmROlIPzZN94f0HDP2Prg3TUWjk+Hy543LFlDVlZ7 cjAw== X-Gm-Message-State: AOAM530xxWMTdMVQU2Jcq1pATSWqFFgHe6aoVeg3HXiS0CcplOdGMwSV DOVYzjqpJbXnAOgktJN70sPZ+nbCnFKwcg== X-Google-Smtp-Source: ABdhPJzRapn0Yhm8gFjuobPdN6s/F185N8kqxfWgDOCkzfswsV3j+C/o9QOovftSqc+W+/ZrJdE0yQ== X-Received: by 2002:a5d:5047:: with SMTP id h7mr24317697wrt.111.1616931042680; Sun, 28 Mar 2021 04:30:42 -0700 (PDT) Received: from fats.bsd.lv (c106-11.i07-27.onvol.net. [92.251.106.11]) by smtp.gmail.com with ESMTPSA id q17sm24131386wrv.25.2021.03.28.04.30.42 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 28 Mar 2021 04:30:42 -0700 (PDT) Subject: Re: ".TS H" macro From: Kristaps Dzonsons To: tech@mandoc.bsd.lv References: Message-ID: Date: Sun, 28 Mar 2021 13:30:41 +0200 User-Agent: Mozilla/5.0 (X11; OpenBSD amd64; rv:78.0) Gecko/20100101 Thunderbird/78.3.2 X-Mailinglist: mandoc-tech Reply-To: tech@mandoc.bsd.lv MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit On second glance, this is only supported by the -ms parser in groff(1) and tables with groff's -man don't support the `.TS H` invocation: % groff -tk -man -Tpdf foo.man >/dev/null error: page 2: table will not fit on one page; use .TS H/.TH with a supporting macro package So this shouldn't affect mandoc because it doesn't accept -ms and thus the `.TS H` shouldn't be used. Sorry for the noise! -- To unsubscribe send an email to tech+unsubscribe@mandoc.bsd.lv