1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-21 03:52:16 -08:00

Opposite terms go at the end of the glossary entry, not the beginning.

Copied from Perforce
 Change: 196207
This commit is contained in:
Gareth Rees 2019-06-10 17:05:21 +01:00
parent db58f314d1
commit 46027e5e76
2 changed files with 4 additions and 4 deletions

View file

@ -287,8 +287,6 @@ Memory Management Glossary: C
cold end
.. opposite:: :term:`hot end`
A :term:`control stack` has two ends: the oldest items are at
the *cold end* and the newest items are at the *hot end*.
Sometimes the cold end is called the "bottom" of the stack,
@ -304,6 +302,8 @@ Memory Management Glossary: C
references to memory managed by the MPS) to
:c:func:`mps_root_create_thread`.
.. opposite:: :term:`hot end`
collect
An :term:`object` is collected when it is :term:`reclaimed` by

View file

@ -120,14 +120,14 @@ Memory Management Glossary: H
hot end
.. opposite:: :term:`cold end`
A :term:`control stack` has two ends: the oldest items are at
the *cold end* and the newest items are at the *hot end*.
Sometimes the hot end is called the "top" of the stack, but
that is misleading when the stack grows downwards, as it does
on common computing platforms.
.. opposite:: :term:`cold end`
huge page
.. aka:: *large page*, *superpage*.