From patchwork Fri Jan 4 11:23:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szabolcs Nagy X-Patchwork-Id: 30959 Received: (qmail 26912 invoked by alias); 4 Jan 2019 11:23:12 -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 26213 invoked by uid 89); 4 Jan 2019 11:23:11 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy=H*Ad:D*fr, 2859 X-HELO: EUR04-DB3-obe.outbound.protection.outlook.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=jqscM1m0/1h1zzBaZfT7yef5PbQrNOkbiLa8zfW2NWU=; b=qB/rOeCKChpl84H5svbvhdrVQwFU2rgAXp/gUTN6hVSGAwNiYtCmB4TCQsJQl5ro84Guz8F2Vdo8tBb/ALpR18mtClf2r9Evg4b3cKO965TseeONDoJyTQYIO8oLTD1AOp3i8/VcsDIH5ohGm+en5HhdthZKL/3Pp461QSdtTAI= From: Szabolcs Nagy To: GNU C Library CC: nd , "Albert ARIBAUD (3ADEV)" , Siddhesh Poyarekar Subject: [PATCH] Fix the manual for old texinfo Date: Fri, 4 Jan 2019 11:23:06 +0000 Message-ID: <791370bf-3dba-a387-f1d1-9a71bb397068@arm.com> user-agent: Mozilla/5.0 (X11; Linux aarch64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 authentication-results: spf=none (sender IP is ) smtp.mailfrom=Szabolcs.Nagy@arm.com; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) MIME-Version: 1.0 Installing the manual fails with texinfo 4.13: /S/manual/maint.texi:288: Unknown command `lbracechar'. /S/manual/maint.texi:288: Misplaced {. /S/manual/maint.texi:288: Misplaced }. /S/manual/maint.texi:290: Unknown command `rbracechar'. /S/manual/maint.texi:290: Misplaced {. /S/manual/maint.texi:290: Misplaced }. /S/manual/maint.texi:302: Unknown command `lbracechar'. /S/manual/maint.texi:302: Misplaced {. /S/manual/maint.texi:302: Misplaced }. /S/manual/maint.texi:305: Unknown command `rbracechar'. /S/manual/maint.texi:305: Misplaced {. /S/manual/maint.texi:305: Misplaced }. makeinfo: Removing output file `/B/manual/libc.info' due to errors; use --force to preserve. make[2]: *** [Makefile:142: /B/manual/libc.info] Error 1 OK for master? 2019-01-04 Szabolcs Nagy * manual/maint.texi: Use @{ and @}. 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