From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 11 09:41:39 2017 Received: (at submit) by debbugs.gnu.org; 11 Jul 2017 13:41:39 +0000 Received: from localhost ([127.0.0.1]:33443 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dUvQ3-0001OE-72 for submit@debbugs.gnu.org; Tue, 11 Jul 2017 09:41:39 -0400 Received: from eggs.gnu.org ([208.118.235.92]:59467) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dUvQ1-0001O1-3q for submit@debbugs.gnu.org; Tue, 11 Jul 2017 09:41:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dUvPu-0005Xm-N8 for submit@debbugs.gnu.org; Tue, 11 Jul 2017 09:41:32 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:36943) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dUvPu-0005Xi-JD for submit@debbugs.gnu.org; Tue, 11 Jul 2017 09:41:30 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50427) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUvPt-0005em-96 for bug-grep@gnu.org; Tue, 11 Jul 2017 09:41:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dUvPq-0005Uo-1s for bug-grep@gnu.org; Tue, 11 Jul 2017 09:41:29 -0400 Received: from mx1.riseup.net ([198.252.153.129]:57496) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dUvPp-0005Tx-QH for bug-grep@gnu.org; Tue, 11 Jul 2017 09:41:25 -0400 Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 63BD41A0205 for ; Tue, 11 Jul 2017 13:41:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1499780484; bh=EfsUT7R6Cu07O47HvhZwygPTwKro4Uw5/Gy4dfeI8G8=; h=Date:From:To:Subject:From; b=j9FYMImn1FipH6wls62/xs89KWawz6B/hgmcykNEq0s/cISZIx8yFeKvsmTTTcFTl kyadTzi3v8vNZuPO2DHm3sFlEtqQl4+kRlxLrEsJEjEjAc2HQSvg/3HJ2tn/FHfKop fDbe2QcdhDjQbPnMjMUEhYtaev4jOAG6CSQ0XzIE= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: santiagorr@riseup.net) by (piha) with ESMTPSA id E2E901D83C0 Date: Tue, 11 Jul 2017 15:41:17 +0200 From: "Santiago R.R." To: bug-grep@gnu.org Subject: grep.1: macro `Dt' not defined Message-ID: <20170711134117.olsxjtyrhpbkzdo6@riseup.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="monrejxinc7luw6g" Content-Disposition: inline X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.3 (---) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) --monrejxinc7luw6g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, As reported in https://bugs.debian.org/863437 line 23 (the .TH macro) in grep.1 contains a not defined `Dt' macro. Please, consider something like the attached patch to fix it. Thanks, Santiago --monrejxinc7luw6g Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="grep-man-Dt-updated.patch" Index: grep/doc/Makefile.am =================================================================== --- grep.orig/doc/Makefile.am +++ grep/doc/Makefile.am @@ -24,9 +24,12 @@ man_MANS = grep.1 fgrep.1 egrep.1 EXTRA_DIST = grep.in.1 CLEANFILES = grep.1 egrep.1 fgrep.1 +MAN_PAGE_UPDATED=$(shell $(top_srcdir)/build-aux/mdate-sh $(srcdir)/grep.in.1) + grep.1: grep.in.1 $(AM_V_GEN)rm -f $@-t $@ - $(AM_V_at)sed 's/@''VERSION@/$(VERSION)/' $(srcdir)/grep.in.1 > $@-t + $(AM_V_at)sed -e 's/@UPDATED@/$(MAN_PAGE_UPDATED)/' \ + -e 's/@''VERSION@/$(VERSION)/' $(srcdir)/grep.in.1 > $@-t $(AM_V_at)chmod a=r $@-t $(AM_V_at)mv -f $@-t $@ Index: grep/doc/grep.in.1 =================================================================== --- grep.orig/doc/grep.in.1 +++ grep/doc/grep.in.1 @@ -20,7 +20,7 @@ .. .\} . -.TH GREP 1 \*(Dt "GNU grep @VERSION@" "User Commands" +.TH GREP 1 "@UPDATED@" "GNU grep @VERSION@" "User Commands" .hy 0 . .SH NAME --monrejxinc7luw6g-- From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 11 11:24:57 2017 Received: (at 27651-done) by debbugs.gnu.org; 11 Jul 2017 15:24:57 +0000 Received: from localhost ([127.0.0.1]:34200 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dUx21-0003vC-9L for submit@debbugs.gnu.org; Tue, 11 Jul 2017 11:24:57 -0400 Received: from zimbra.cs.ucla.edu ([131.179.128.68]:37936) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dUx20-0003uz-2K for 27651-done@debbugs.gnu.org; Tue, 11 Jul 2017 11:24:56 -0400 Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 42B58160185; Tue, 11 Jul 2017 08:24:50 -0700 (PDT) Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id fiZLa5dPM1Dt; Tue, 11 Jul 2017 08:24:49 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 696EA1600E4; Tue, 11 Jul 2017 08:24:49 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id odrTVfoNkrH5; Tue, 11 Jul 2017 08:24:49 -0700 (PDT) Received: from [192.168.1.9] (unknown [47.153.184.153]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 465B11600DA; Tue, 11 Jul 2017 08:24:49 -0700 (PDT) Subject: Re: bug#27651: grep.1: macro `Dt' not defined To: "Santiago R.R." , 27651-done@debbugs.gnu.org References: <20170711134117.olsxjtyrhpbkzdo6@riseup.net> From: Paul Eggert Organization: UCLA Computer Science Department Message-ID: <0c986b26-2d9f-40c2-c4b8-cc8be490020a@cs.ucla.edu> Date: Tue, 11 Jul 2017 08:24:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170711134117.olsxjtyrhpbkzdo6@riseup.net> Content-Type: multipart/mixed; boundary="------------4DB5166CFEBB3F715453A004" Content-Language: en-US X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 27651-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) This is a multi-part message in MIME format. --------------4DB5166CFEBB3F715453A004 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Thanks for the bug report. I installed the attached patch. It uses a hand-maintained date, which is more likely to give the user the (accurate) impression that the grep man page is not the focus of our documentation efforts. --------------4DB5166CFEBB3F715453A004 Content-Type: text/x-patch; name="0001-doc-define-Dt-string-in-man-page.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-doc-define-Dt-string-in-man-page.patch" >From 8d1953300ef03d05fb3864d944d1de81613a9bb6 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 11 Jul 2017 08:20:26 -0700 Subject: [PATCH] doc: define Dt string in man page Problem reported by Bjarni I. Gislason via Santiago R.R. (Bug#27651). * doc/grep.in.1 (dT): New macro. (Dt): Define this string. --- doc/grep.in.1 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/doc/grep.in.1 b/doc/grep.in.1 index 40c9586..ecc8105 100644 --- a/doc/grep.in.1 +++ b/doc/grep.in.1 @@ -1,4 +1,14 @@ .\" GNU grep man page +.de dT +.ds Dt \\$2 +.. +.dT Time-stamp: "2017-06-21" +.\" Update the above date whenever a change to either this file or +.\" grep.c's 'usage' function results in a nontrivial change to the man page. +.\" In Emacs, you can update the date by running 'M-x time-stamp' +.\" after you make a change that you decide is nontrivial. +.\" It is no big deal to forget to update the date. +. .if !\n(.g \{\ . if !\w|\*(lq| \{\ . ds lq `` @@ -1213,3 +1223,8 @@ This man page is maintained only fitfully; the full documentation is often more up-to-date. .\" Work around problems with some troff -man implementations. .br +. +.\" Format for Emacs-maintained Dt string defined at this file's start. +.\" Local variables: +.\" time-stamp-format: "%:y-%02m-%02d" +.\" End: -- 2.7.4 --------------4DB5166CFEBB3F715453A004-- From debbugs-submit-bounces@debbugs.gnu.org Wed Jul 12 05:26:15 2017 Received: (at 27651) by debbugs.gnu.org; 12 Jul 2017 09:26:15 +0000 Received: from localhost ([127.0.0.1]:34727 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dVDuR-0000zg-E1 for submit@debbugs.gnu.org; Wed, 12 Jul 2017 05:26:15 -0400 Received: from mx1.riseup.net ([198.252.153.129]:35370) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dVDuP-0000zW-RF for 27651@debbugs.gnu.org; Wed, 12 Jul 2017 05:26:14 -0400 Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 1EB6F1A094F for <27651@debbugs.gnu.org>; Wed, 12 Jul 2017 09:26:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1499851573; bh=KP3QqdODDntxqUDo3IoLxph7XR/EXSwqD8hULd8o0vc=; h=Date:From:To:Subject:References:In-Reply-To:From; b=D2dIwWTs125Z2aeRpTwnw6MAqAQSaT5RXjXYc3c+G8En5XqwCbZ/6MAEdREq7QcLx BThH6fQk7Dn2cLM2YFI92Js+torkzLASNrQdAw6QQjutoink1NeJGl5PzKjrfLZs7b 3irDDy5/8ugaPE0BsbGECYyb1f8KFZBPEUTED4Qw= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: santiagorr@riseup.net) by (cotinga) with ESMTPSA id 59AC159B13 Date: Wed, 12 Jul 2017 11:26:06 +0200 From: "Santiago R.R." To: 27651@debbugs.gnu.org Subject: Re: bug#27651: grep.1: macro `Dt' not defined Message-ID: <20170712092606.unsfvmyngfyhiszw@riseup.net> References: <20170711134117.olsxjtyrhpbkzdo6@riseup.net> <0c986b26-2d9f-40c2-c4b8-cc8be490020a@cs.ucla.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <0c986b26-2d9f-40c2-c4b8-cc8be490020a@cs.ucla.edu> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 27651 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) El 11/07/17 a las 08:24, Paul Eggert escribió: > Thanks for the bug report. I installed the attached patch. It uses a > hand-maintained date, which is more likely to give the user the (accurate) > impression that the grep man page is not the focus of our documentation > efforts. Thanks! Santiago From unknown Fri Sep 19 21:46:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 09 Aug 2017 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator