From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Ruijie Yu via "Emacs development discussions." Newsgroups: gmane.emacs.devel Subject: Re: master 391ff93f763 3/4: * doc/misc/calc.texi (Musical Notes): Fix build with Texinfo 4.13. Date: Wed, 9 Aug 2023 13:48:49 +0800 Message-ID: <757DBAD0-0467-44DB-9955-5DEACCEAA097@netyu.xyz> References: <20230809015052.0CD2CC038BE@vcs2.savannah.gnu.org> Reply-To: Ruijie Yu Mime-Version: 1.0 (1.0) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="11617"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Po Lu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Aug 09 07:50:13 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 1qTc5F-0002nh-Be for ged-emacs-devel@m.gmane-mx.org; Wed, 09 Aug 2023 07:50:13 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qTc4K-0006zg-FM; Wed, 09 Aug 2023 01:49:16 -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 1qTc4I-0006zW-ME for emacs-devel@gnu.org; Wed, 09 Aug 2023 01:49:14 -0400 Original-Received: from netyu.xyz ([152.44.41.246] helo=mail.netyu.xyz) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qTc4G-0001S1-VX for emacs-devel@gnu.org; Wed, 09 Aug 2023 01:49:14 -0400 Original-Received: from smtpclient.apple ( [112.97.54.70]) by netyu.xyz (OpenSMTPD) with ESMTPSA id 2eb7e9bf (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 9 Aug 2023 05:49:10 +0000 (UTC) In-Reply-To: <20230809015052.0CD2CC038BE@vcs2.savannah.gnu.org> X-Mailer: iPhone Mail (20G75) Received-SPF: pass client-ip=152.44.41.246; envelope-from=ruijie@netyu.xyz; helo=mail.netyu.xyz X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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:308455 Archived-At: Hello Po Lu, On Aug 9, 2023, at 09:51, Po Lu via Mailing list for Emacs changes wrote: >=20 > =EF=BB=BFbranch: master > commit 391ff93f763228fb62a8d658a190a60e4a0a1791 > Author: Po Lu > Commit: Po Lu >=20 > * doc/misc/calc.texi (Musical Notes): Fix build with Texinfo 4.13. > --- > doc/misc/calc.texi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi > index 00c0fa6001a..5064f76e7b8 100644 > --- a/doc/misc/calc.texi > +++ b/doc/misc/calc.texi > @@ -28476,12 +28476,12 @@ B and > the octave numbered 0 was chosen to correspond to the lowest > audible frequency. Using this system, middle C (about 261.625 Hz) > corresponds to the note @slanted{C} in octave 4 and is denoted > -@slanted{C@sub{4}}. Any frequency can be described by giving a note plus= an > +@slanted{C4}. Any frequency can be described by giving a note plus an > offset in cents (where a cent is a ratio of frequencies so that a > semitone consists of 100 cents). I presume you made this change because of a newly introduced warning/error -= - sorry if I have missed any relevant discussion.=20 However, the new version would (IIRC) misalign with the usual musical notati= on, where we have "C" and "4" side by side in italics, but what we really ne= ed is "C" and subscripted "4", maybe both italicized (I don=E2=80=99t know w= hether we really need italicization, someone else might have a better idea).= =20 I don=E2=80=99t have any experience in writing texi files, but can we do thi= s instead without triggering any warnings/errors?=20 @slanted{C}@sub{@slanted{4}} > The midi note number system assigns numbers to notes so that > -@slanted{C@sub{-1}} corresponds to the midi note number 0 and @slanted{G@= sub{9}} > +@slanted{C-1} corresponds to the midi note number 0 and @slanted{G9} > corresponds to the midi note number 127. A midi controller can have > up to 128 keys and each midi note number from 0 to 127 corresponds to > a possible key. And also here regarding C-1 and G9.=20 Thanks.=20 -- Best, RY=