From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from omta002.cacentral1.a.cloudfilter.net (omta002.cacentral1.a.cloudfilter.net [3.97.99.33]) by sourceware.org (Postfix) with ESMTPS id 6C1B03858D1E for ; Tue, 21 Feb 2023 04:20:17 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 6C1B03858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=Shaw.ca Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=shaw.ca Received: from shw-obgw-4002a.ext.cloudfilter.net ([10.228.9.250]) by cmsmtp with ESMTP id U6TapZ27mjvm1UK8XpXyw2; Tue, 21 Feb 2023 04:20:17 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=shaw.ca; s=s20180605; t=1676953217; bh=AWcLFalQEpX+dRVD15mnbcKaycHv4fQxpOiA4+T4Ppc=; h=From:To:Subject:Date:In-Reply-To:References; b=o6dRJaUVisGPJfV+mxMKtNSrIOan31DGuGsVGo+zGMNxz7zENj002+FJj29Mn2ibG 8jUPVPg4L8sLsbXeoCOVBgz/frDItR0DOnqZroKZ2Gl0gW/gR6NY22xhNmciMB05V7 YADUwOo8AbZxRKYfd4feq1QpMSnCdtZ1GKz62icupOJEKM7EFrTWYpHqExZCywDmxc +f9vTNaranTDXPbR3pM8KDb574zu81W00vs1BAnCxlRO8fG3Ei0Pv3BftIVPeEg7a1 1X9TW0gXX9yrL3OmlCKme/28v49jpnFE/oRi7+OLncsMhrqr50IAZ3lAOSpzKOW391 Oo7FhwmtOHirg== Received: from localhost.localdomain ([184.64.102.149]) by cmsmtp with ESMTP id UK8WpVM5EyAOeUK8WpnKkC; Tue, 21 Feb 2023 04:20:17 +0000 X-Authority-Analysis: v=2.4 cv=e5oV9Il/ c=1 sm=1 tr=0 ts=63f44681 a=DxHlV3/gbUaP7LOF0QAmaA==:117 a=DxHlV3/gbUaP7LOF0QAmaA==:17 a=lp0qu_-v5g4LgAxYg00A:9 From: Brian Inglis To: newlib@sourceware.org Subject: [PATCH v3 2/2] newlib/libc/Makefile.inc: sed fix strftime.3 tbl/groff format issues Date: Mon, 20 Feb 2023 21:18:01 -0700 Message-Id: <20230221041801.51970-3-Brian.Inglis@Shaw.ca> X-Mailer: git-send-email 2.39.0 In-Reply-To: <20230221041801.51970-1-Brian.Inglis@Shaw.ca> References: <20230217204902.3735-1-Brian.Inglis@Shaw.ca> <20230221041801.51970-1-Brian.Inglis@Shaw.ca> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfE02t2PHZcYmHlrv0QN5FFqx9bC+nK2EpnY1WK9RjxKWNLVpXxYhxFXviv7hAWX9Uituyu+lRBFWYi0rIC6+Smjp4c9ZUFKgnrEzY+oSTRB+HhG/nGkP MDWxLtYlNsUo52LX03fDu9Omp4FimULwQ/mlGoJa1/uPoAIZ23ApVTcs4ZKAEHse8+ox+LHAevAfCo7tmTn9yE6RqvX1GlZLw0COZCCjTN++t9dU4t1JVUkC 52vy++SSVOTmR12wq57j3Q== X-Spam-Status: No, score=-9.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: remove multiple "^l l$" tbl line formats at tops of tables; change remaining "^l l\.$" tbl line formats at tops of tables so second column is lx and extends to margin; remove "^.PP$" breaks before each format description as it misaligns text below format specifier; remove blank line between adjacent tables --- newlib/libc/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/newlib/libc/Makefile.inc b/newlib/libc/Makefile.inc index d07eed7641ec..248d3051fa87 100644 --- a/newlib/libc/Makefile.inc +++ b/newlib/libc/Makefile.inc @@ -30,6 +30,7 @@ man: %C%_man.stamp %C%_install-man: %C%_man.stamp $(MKDIR_P) $(DESTDIR)$(mandir)/man3 + sed -i -e '/^\.TS$$/,/^\.TE$$/{/^\.PP$$\|^l\sl$$/d;/^l\sl\.$$/s,\.,x&,};/^\.TE$$/,/^\.TS$$/{/^\.sp\s1$$/d}' -- %D%/strftime.3 $(INSTALL_DATA) %D%/*.3 $(DESTDIR)$(mandir)/man3/ install-man: %C%_install-man -- 2.39.0