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

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2007-05-16 07:51:52 +00:00
parent c122500a28
commit 41185bfe2a
3 changed files with 7 additions and 1 deletions

View file

@ -33,3 +33,4 @@ mkinstalldirs
pre-inst-guile
pre-inst-guile-env
stamp-h1
texinfo.tex

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