diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-09-03 06:44:30 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-09-03 06:44:30 -0700 |
commit | da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439 (patch) | |
tree | f27db0891d5f4e13f7666c8a3c51bb47c5ab8099 /txr.1 | |
parent | 2d2cfdc16d4d96fa685853d96b8b7f86ec7dd27d (diff) | |
download | txr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.tar.gz txr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.tar.bz2 txr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.zip |
doc: hyphenation of some compound words.
* txr.1: Hyphenate "heap-allocated" and "stack-allocated".
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17425,7 +17425,7 @@ Character. .coIP fixnum Fixnum integer: an integer that fits into the value word, not having to -be heap allocated. +be heap-allocated. .coIP bignum A bignum integer: arbitrary precision integer that is heap-allocated. @@ -42414,7 +42414,7 @@ allocated in storage which isn't captured by delimited continuations. The .code h in the names stands for "heap", serving as a mnemonic based on the -implementation concept of these bindings being "heap allocated". +implementation concept of these bindings being "heap-allocated". .SS* Regular Expression Library @@ -60787,7 +60787,7 @@ heap areas are not counted as .meta malloc-bytes includes storage such as the space used for dynamic strings, vectors and bignums (in addition to -their gc-heap allocated nodes), and the various structures used by the +their gc-heap-allocated nodes), and the various structures used by the .code cobj type objects such as streams and hashes. Objects in external libraries that use uninstrumented allocators are not counted: for instance the C @@ -61685,7 +61685,7 @@ representation. This takes place by converting Lisp objects into stack-allocated temporary buffers representing C objects. For aggregate objects containing pointers, additional buffers are allocated dynamically. For instance, suppose a structure contains a string and is passed by value. The -structure will be converted to a stack allocated equivalent C structure, in +structure will be converted to a stack-allocated equivalent C structure, in which the string will appear as a pointer. That pointer may use dynamically allocated (via .codn malloc ) |