1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Fix broken texinfo markup in (ice-9 iconv) docs.

* doc/ref/api-data.texi (Representing Strings as Bytes): Fix broken
  @deffn syntax.
This commit is contained in:
Mark H Weaver 2013-04-01 12:28:25 -04:00
parent de2bc673bb
commit 369294866d

View file

@ -4222,7 +4222,7 @@ Unlike the rest of the procedures in this section, you have to load the
(use-modules (ice-9 iconv))
@end example
@deffn string->bytevector string encoding [conversion-strategy]
@deffn {Scheme Procedure} string->bytevector string encoding [conversion-strategy]
Encode @var{string} as a sequence of bytes.
The string will be encoded in the character set specified by the
@ -4236,7 +4236,7 @@ bytevectors. @xref{Ports}, for more on character encodings and
conversion strategies.
@end deffn
@deffn bytevector->string bytevector encoding [conversion-strategy]
@deffn {Scheme Procedure} bytevector->string bytevector encoding [conversion-strategy]
Decode @var{bytevector} into a string.
The bytes will be decoded from the character set by the @var{encoding}
@ -4247,7 +4247,7 @@ argument to modify this behavior. @xref{Ports}, for more on character
encodings and conversion strategies.
@end deffn
@deffn call-with-output-encoded-string encoding proc [conversion-strategy]
@deffn {Scheme Procedure} call-with-output-encoded-string encoding proc [conversion-strategy]
Like @code{call-with-output-string}, but instead of returning a string,
returns a encoding of the string according to @var{encoding}, as a
bytevector. This procedure can be more efficient than collecting a