From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: emacs-29 889a550ca08: ; Fix Texinfo warnings Date: Sun, 22 Oct 2023 12:30:43 +0200 Message-ID: References: <169796650463.2984.6470791064475342706@vcs2.savannah.gnu.org> <20231022092145.0486AC09BDB@vcs2.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="3755"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Eli Zaretskii To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Oct 22 12:31:49 2023 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1quVkK-0000oC-Rp for ged-emacs-devel@m.gmane-mx.org; Sun, 22 Oct 2023 12:31:49 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1quVjO-0005aN-VQ; Sun, 22 Oct 2023 06:30:50 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1quVjM-0005Zv-KB for emacs-devel@gnu.org; Sun, 22 Oct 2023 06:30:48 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1quVjM-0002ja-CG for emacs-devel@gnu.org; Sun, 22 Oct 2023 06:30:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=7SwZnl+0fOyEP6JYveZ/UK2pmpIvOkgQpjXVYXRq5cU=; b=czqojlHf5axJ6ghkG8Tz ZtnYYclDUjKHZKQyvCBeaFyTF+1dAkbWqn16U9IpsyoOL18cL79TpwflFhbtsvYpR0cOj/OYfmDn+ /2j7VD0oPS4I1Fg+lHSnLcu/sG0GKkp9SnqJDaUono/AlKfO/vv6ScXymt3iqsEUQ3CJ8il7RanAg LmDfNnUwqlTYit2tu+KIumPr2ZjNxp+UY+SvAsXxcn6t8sPQWR/SilctM8XZc3RenEpfCG8IV506w s0qy660wTWhjDbwAFMInuCgjTa0BFEvUf/5WhhC488Ax05WqXWzCMFRdaewdyH/gIPeE/uUmIbsWj VbVBxukFGFvNtw==; In-Reply-To: <20231022092145.0486AC09BDB@vcs2.savannah.gnu.org> (Eli Zaretskii's message of "Sun, 22 Oct 2023 05:21:44 -0400 (EDT)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:311678 Archived-At: Eli Zaretskii writes: > branch: emacs-29 > commit 889a550ca0847679bc96547c14622e239eb93f91 > Author: Eli Zaretskii > Commit: Eli Zaretskii > > ; Fix Texinfo warnings > > * doc/misc/wisent.texi (Grammar format): > * doc/misc/efaq.texi (Not writing files to the current directory): > * doc/misc/ede.texi: > * doc/lispref/errors.texi (Standard Errors): Fix warnings emitted > by makeinfo 7.1. Thanks for fixing them. I get other warnings as well (cc-mode.texi, octave-mode.texi, org.texi, tramp.texi which will be adressed by the package maintainers, I guess) but I think this one is in your hands: emacs-lisp-intro.texi:15802: warning: @noindent is useless inside of a paragraph which is about this piece of input: @c colon in printed section title causes problem in Info cross reference This way, we avoid an error. @iftex @noindent (For information about @code{and}, see @ref{kill-new function, , The @code{kill-new} function}.) @end iftex @ifinfo @noindent (@xref{kill-new function, , The @code{kill-new} function}, for information about @code{and}.) @end ifinfo This is with Emacs from master (ae33788410) and makeinfo 7.1. Best, Arash