1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

comment formatting in ports.c

* libguile/ports.c: Fix comment.
This commit is contained in:
Andy Wingo 2012-02-26 23:02:16 +01:00
parent 07e69928fc
commit 05b4d9106d

View file

@ -1588,9 +1588,9 @@ get_utf8_codepoint (SCM port, scm_t_wchar *codepoint,
}
/* Read an ISO-8859-1 codepoint (a byte) from PORT. On success, return
*0 and set CODEPOINT to the codepoint that was read, fill BUF with
*its UTF-8 representation, and set *LEN to the length in bytes.
*Return `EILSEQ' on error. */
0 and set *CODEPOINT to the codepoint that was read, fill BUF with
its UTF-8 representation, and set *LEN to the length in bytes.
Return `EILSEQ' on error. */
static int
get_latin1_codepoint (SCM port, scm_t_wchar *codepoint,
char buf[SCM_MBCHAR_BUF_SIZE], size_t *len)