From patchwork Wed Dec 19 21:02:11 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tulio Magno Quites Machado Filho X-Patchwork-Id: 30763 X-Patchwork-Delegate: fweimer@redhat.com Received: (qmail 103138 invoked by alias); 19 Dec 2018 21:02:30 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 103128 invoked by uid 89); 19 Dec 2018 21:02:30 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-27.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1137, sk:tuliom@, U*tuliom, sk:tuliom X-HELO: mx0a-001b2d01.pphosted.com From: Tulio Magno Quites Machado Filho To: libc-alpha@sourceware.org Subject: [PATCH] Replace @[r|l]bracechar with @{ and @} in the manual Date: Wed, 19 Dec 2018 19:02:11 -0200 x-cbid: 18121921-0064-0000-0000-000003892486 X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00010250; HX=3.00000242; KW=3.00000007; PH=3.00000004; SC=3.00000271; SDB=6.01134150; UDB=6.00589657; IPR=6.00914325; MB=3.00024756; MTD=3.00000008; XFM=3.00000015; UTC=2018-12-19 21:02:24 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18121921-0065-0000-0000-00003BBD4443 Message-Id: <20181219210211.16753-1-tuliom@linux.ibm.com> The support for @lbracechar and @rbracechar was added in GNU Texinfo 5.0, but glibc still supports GNU Texinfo 4.7. 2018-12-19 Tulio Magno Quites Machado Filho * manual/maint.texi(64-bit time symbol handling): Replace @[r|l]bracechar with @{ and @}. Signed-off-by: Tulio Magno Quites Machado Filho --- manual/maint.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manual/maint.texi b/manual/maint.texi index a1b8f62d14..ec234e15d7 100644 --- a/manual/maint.texi +++ b/manual/maint.texi @@ -285,9 +285,9 @@ and is compiled for both dual-time and single-time configuration classes. @smallexample struct tm * __localtime64 (const __time64_t *t) -@lbracechar{} +@{ return __tz_convert (*t, 1, &_tmbuf); -@rbracechar{} +@} libc_hidden_def (__localtime64) @end smallexample @@ -299,10 +299,10 @@ dual-time configurations: struct tm * localtime (const time_t *t) -@lbracechar{} +@{ __time64_t t64 = *t; return __localtime64 (&t64); -@rbracechar{} +@} libc_hidden_def (localtime) #endif