diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-01-18 14:13:31 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-01-18 14:13:31 +0000 |
commit | a3c8b9fce93c12edd6713d03719ac2fd345b982d (patch) | |
tree | 5ccd7010abd19f144292d7d31104eb326f7b3be7 /libguile/filesys.c | |
parent | d9b6c1703273ea5ae660c46ca7b650b46359727e (diff) | |
download | guile-a3c8b9fce93c12edd6713d03719ac2fd345b982d.tar.gz |
* strports.c (st_end_input): Inserted parenthesis to get operator
grouping correct.
* fports.c, list.c, numbers.c, ports.c, stime.c, symbols.c,
filesys.c, posix.c: Converted docstrings to ANSI C format and
escaped " occurring inside string literals.
Diffstat (limited to 'libguile/filesys.c')
-rw-r--r-- | libguile/filesys.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/filesys.c b/libguile/filesys.c index 89018c2c0..b1c6c9375 100644 --- a/libguile/filesys.c +++ b/libguile/filesys.c @@ -1033,9 +1033,9 @@ SCM_DEFINE (scm_fcntl, "fcntl", 2, 0, 1, "@item F_SETOWN\n" "Set the process that owns a socket to @var{value}, for @code{SIGIO} signals.\n" "@item FD_CLOEXEC\n" - "The value used to indicate the "close on exec" flag with @code{F_GETFL} or -@code{F_SETFL}. -@end table") + "The value used to indicate the \"close on exec\" flag with @code{F_GETFL} or" + "@code{F_SETFL}." + "@end table") #define FUNC_NAME s_scm_fcntl { int rv; |