summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-09-03 06:44:30 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-09-03 06:44:30 -0700
commitda4c1da3cd3fdaeed7e3b295f6b0d89c4a949439 (patch)
treef27db0891d5f4e13f7666c8a3c51bb47c5ab8099
parent2d2cfdc16d4d96fa685853d96b8b7f86ec7dd27d (diff)
downloadtxr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.tar.gz
txr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.tar.bz2
txr-da4c1da3cd3fdaeed7e3b295f6b0d89c4a949439.zip
doc: hyphenation of some compound words.
* txr.1: Hyphenate "heap-allocated" and "stack-allocated".
-rw-r--r--txr.18
1 files changed, 4 insertions, 4 deletions
diff --git a/txr.1 b/txr.1
index a3d10ea9..7b15d0d8 100644
--- a/txr.1
+++ b/txr.1
@@ -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 )