public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] manual: Use Unicode instead HTML entities for characters (bug 19737)
@ 2020-07-16  8:17 Florian Weimer
  0 siblings, 0 replies; only message in thread
From: Florian Weimer @ 2020-07-16  8:17 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=da7d62b50396c8b6d67c1ba800a196e83e2ec469

commit da7d62b50396c8b6d67c1ba800a196e83e2ec469
Author: Florian Weimer <fweimer@redhat.com>
Date:   Thu Jul 16 10:17:31 2020 +0200

    manual: Use Unicode instead HTML entities for characters (bug 19737)
    
    Texinfo no longer treats arguments to @set in @ifhtml blocks as
    literal HTML, so the & in the entity references was encoded as
    @amp; in HTML.  Using the equivalent Unicode characters avoids
    this issue.
    
    Reviewed-by: Carlos O'Donell <carlos@redhat.com>
    Tested-by: Carlos O'Donell <carlos@redhat.com>

Diff:
---
 manual/math.texi | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/manual/math.texi b/manual/math.texi
index dcff7b7f41..376306cfc5 100644
--- a/manual/math.texi
+++ b/manual/math.texi
@@ -1,9 +1,9 @@
 @c We need some definitions here.
 @ifclear mult
 @ifhtml
-@set mult &middot;
-@set infty &infin;
-@set pie &pi;
+@set mult @U{00B7}
+@set infty @U{221E}
+@set pie @U{03C0}
 @end ifhtml
 @iftex
 @set mult @cdot


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-07-16  8:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-16  8:17 [glibc] manual: Use Unicode instead HTML entities for characters (bug 19737) Florian Weimer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).