diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-06-21 16:55:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-06-22 01:00:41 +0200 |
commit | 2d34e9244b8b35f62d086a88db749718a2a1a3b4 (patch) | |
tree | 23ae7d081cc0fa1f0e3a8fd1baa8a2b9df13b4a6 /doc/ref/api-data.texi | |
parent | d64fc8b039fd686a5f8f33458ba1193dc584b2a9 (diff) | |
download | guile-2d34e9244b8b35f62d086a88db749718a2a1a3b4.tar.gz |
bytevectors: Use `size_t' rather than `unsigned' for sizes.
* doc/ref/api-data.texi (Bytevector Manipulation): Update.
* libguile/bytevectors.c (INTEGER_ACCESSOR_PROLOGUE,
make_bytevector_from_buffer, scm_c_make_bytevector,
scm_c_take_bytevector, scm_i_shrink_bytevector): Use `size_t' for
bytevector lengths.
Diffstat (limited to 'doc/ref/api-data.texi')
-rwxr-xr-x | doc/ref/api-data.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index 78d4ea27b..eb059d329 100755 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -3837,7 +3837,7 @@ procedures. @deffn {Scheme Procedure} 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 (size_t len) Return a new bytevector of @var{len} bytes. Optionally, if @var{fill} is given, fill it with @var{fill}; @var{fill} must be in the range [-128,255]. |