1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Fix documentation of `make-bytevector'.

* doc/ref/api-data.texi (Bytevector Manipulation): Fix documentation of
  the FILL argument of `make-bytevector'.
This commit is contained in:
Ludovic Courtès 2009-06-21 23:32:19 +02:00
parent 5c27902e5e
commit d64fc8b039

View file

@ -3839,8 +3839,8 @@ procedures.
@deffnx {C Function} scm_make_bytevector (len, fill) @deffnx {C Function} scm_make_bytevector (len, fill)
@deffnx {C Function} scm_c_make_bytevector (unsigned len) @deffnx {C Function} scm_c_make_bytevector (unsigned len)
Return a new bytevector of @var{len} bytes. Optionally, if @var{fill} Return a new bytevector of @var{len} bytes. Optionally, if @var{fill}
is given, fill it with @var{fill}; @var{fill} must be an 8-bit signed is given, fill it with @var{fill}; @var{fill} must be in the range
integer, i.e., in the range [-128,127]. [-128,255].
@end deffn @end deffn
@deffn {Scheme Procedure} bytevector? obj @deffn {Scheme Procedure} bytevector? obj