summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul A. Patience <paul@apatience.com>2021-10-03 20:12:08 -0400
committerKaz Kylheku <kaz@kylheku.com>2021-10-04 06:54:49 -0700
commit58e210ade56cb85d3c5147ee3cd1178273c7e874 (patch)
tree46473929ecd0efe82420d639b8ed4478633bfb6a
parent714d21783f59b03d7d8ac5d40a430ef2dbb72a28 (diff)
downloadtxr-58e210ade56cb85d3c5147ee3cd1178273c7e874.tar.gz
txr-58e210ade56cb85d3c5147ee3cd1178273c7e874.tar.bz2
txr-58e210ade56cb85d3c5147ee3cd1178273c7e874.zip
doc: fix refs to inexistent fill- and put-array.
* txr.1: fill-array -> fill-carray, put-array -> put-carray. Refer to fill-buf and put-buf with .code (or .codn). Use .code when referring to a carray object rather than an argument called carray.
-rw-r--r--txr.116
1 files changed, 8 insertions, 8 deletions
diff --git a/txr.1 b/txr.1
index b906d8c0..6a66b5d1 100644
--- a/txr.1
+++ b/txr.1
@@ -81634,14 +81634,14 @@ the value -1 is returned.
.coNP Functions @ fill-carray and @ put-carray
.synb
-.mets (fill-array < carray >> [ pos <> [ stream ]])
-.mets (put-array < carray >> [ pos <> [ stream ]])
+.mets (fill-carray < carray >> [ pos <> [ stream ]])
+.mets (put-carray < carray >> [ pos <> [ stream ]])
.syne
.desc
The
-.code fill-array
+.code fill-carray
and
-.code put-array
+.code put-carray
functions perform stream output using the
.code carray
object as a buffer.
@@ -81651,11 +81651,11 @@ A temporary buffer is created which aliases the storage of
.meta carray
and this buffer is used as an argument in an invocation of, respectively,
the buffer I/O function
-.meta fill-buf
+.code fill-buf
or
-.metn put-buf .
+.codn put-buf .
-The value returned by buffer I/O function is returned.
+The value returned by the buffer I/O function is returned.
The
.meta pos
@@ -81668,7 +81668,7 @@ and
and have the same meaning. In particular,
.meta pos
indicates a byte offset into the
-.meta carray
+.code carray
object's storage, not an array index.
.SH* LISP COMPILATION