From 41185bfe2af9c5ced76eb27517b5ca768163503f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 16 May 2007 07:51:52 +0000 Subject: [PATCH] Changes from arch/CVS synchronization --- .cvsignore | 1 + doc/ref/ChangeLog | 5 +++++ doc/ref/posix.texi | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.cvsignore b/.cvsignore index 109038aaa..4dae94a82 100644 --- a/.cvsignore +++ b/.cvsignore @@ -33,3 +33,4 @@ mkinstalldirs pre-inst-guile pre-inst-guile-env stamp-h1 +texinfo.tex diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index e911cfb0d..614da1db9 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,8 @@ +2007-05-16 Ludovic Courtès + + * posix.texi (Network Sockets and Communication): Fixed typo: + `make-socket-object' instead of `make-socket-address'. + 2007-03-08 Kevin Ryde * api-compound.texi (Structures): Revise and expand variously, add diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi index 341bcf450..f81abbc6b 100644 --- a/doc/ref/posix.texi +++ b/doc/ref/posix.texi @@ -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