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

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2007-05-16 08:04:17 +00:00
parent fa7e72a356
commit 8edec42a34
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-05-16 Ludovic Courtès <ludovic.courtes@laas.fr>
* posix.texi (Network Sockets and Communication): Fixed typo:
`make-socket-object' instead of `make-socket-address'.
2007-03-08 Kevin Ryde <user42@zip.com.au>
* api-compound.texi (Structures): Revise and expand variously, add

View file

@ -2903,7 +2903,7 @@ automatically, if not already bound.
@example
(bind sock AF_INET INADDR_ANY 12345)
(bind sock (make-socket-object AF_INET INADDR_ANY 12345))
(bind sock (make-socket-address AF_INET INADDR_ANY 12345))
@end example
@end deffn