From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id D52DA38618AE; Thu, 1 Feb 2024 15:40:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D52DA38618AE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1706802050; bh=3De/hqARyAo9nNtA0hXlaEN/FEqaC2xpVzP00CEfmOk=; h=From:To:Subject:Date:From; b=jbpDnOwZCvR4AXsK5dg+OG3m+T7lwrChPf8N6VokiisW8f5pOlmpDDjsnnec1g7k6 LLW7XRw1RloqhW6G8cjpB9rlJpf8VEn0va7IULVe2sA1TyANVQKvDR/dxCfAByt/nv KbbqnsWcCVtywOtkxtCHRWmE1Cst36APuGaiyU4o= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Jakub Jelinek To: glibc-cvs@sourceware.org Subject: [glibc] manual: Fix up stdbit.texi X-Act-Checkin: glibc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: ae4b8d6a0e0dc502e3d8307474a2e5691b7434da X-Git-Newrev: c62b6265a641aaec4b0fa1b3fe622c2edf9c3821 Message-Id: <20240201154050.D52DA38618AE@sourceware.org> Date: Thu, 1 Feb 2024 15:40:50 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c62b6265a641aaec4b0fa1b3fe622c2edf9c3821 commit c62b6265a641aaec4b0fa1b3fe622c2edf9c3821 Author: Jakub Jelinek Date: Thu Feb 1 16:36:55 2024 +0100 manual: Fix up stdbit.texi My recent change broke make pdf and in other documentation formats results in weird rendering and invalid URL, all because of a forgotten comma to separate @uref arguments. Diff: --- manual/stdbit.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/stdbit.texi b/manual/stdbit.texi index f74d33903a..48591eab82 100644 --- a/manual/stdbit.texi +++ b/manual/stdbit.texi @@ -34,7 +34,7 @@ the functions but without any suffix such as @samp{_uc}. The type-generic macro can only be used with an argument of an unsigned integer type with a width of 8, 16, 32 or 64 bits, or when using a compiler with support for -@uref{https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html@code{__builtin_stdc_bit_ceil}}, +@uref{https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html,@code{__builtin_stdc_bit_ceil}}, etc.@:, built-in functions such as GCC 14.1 or later any unsigned integer type those built-in functions support. In GCC 14.1 that includes support for @code{unsigned __int128} and