diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-07-16 10:17:31 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-07-16 10:17:31 +0200 |
commit | da7d62b50396c8b6d67c1ba800a196e83e2ec469 (patch) | |
tree | edf35e2a1757b98cd9ca0b8cec8e26765c0e5744 /manual | |
parent | 17400c4bcd57d84add1da3aa93248ef2efdb0ccb (diff) | |
download | glibc-da7d62b50396c8b6d67c1ba800a196e83e2ec469.tar glibc-da7d62b50396c8b6d67c1ba800a196e83e2ec469.tar.gz glibc-da7d62b50396c8b6d67c1ba800a196e83e2ec469.tar.bz2 glibc-da7d62b50396c8b6d67c1ba800a196e83e2ec469.zip |
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>
Diffstat (limited to 'manual')
-rw-r--r-- | manual/math.texi | 6 |
1 files 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 · -@set infty ∞ -@set pie π +@set mult @U{00B7} +@set infty @U{221E} +@set pie @U{03C0} @end ifhtml @iftex @set mult @cdot |