changeset 30253:19dddf05ec2a

remove trailing spaces * NEWS: Likewise. * lib/poll.c (poll): Likewise. * lib/sys_socket.in.h (SHUT_RDWR): Likewise. * lib/winsock.c (rpl_close): Likewise. * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise. * modules/yield: Likewise. * tests/test-poll.c (connect_to_socket, poll1): Likewise. * tests/test-sys_select.c (connect_to_socket): Likewise.
author Jim Meyering <meyering@redhat.com>
date Wed, 01 Oct 2008 09:43:40 +0200
parents 074c2db80df8
children 3e091c11fedc
files ChangeLog NEWS lib/poll.c lib/sys_socket.in.h lib/winsock.c m4/memcmp.m4 modules/yield tests/test-poll.c tests/test-sys_select.c
diffstat 9 files changed, 25 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Oct 01 09:22:11 2008 +0200
+++ b/ChangeLog	Wed Oct 01 09:43:40 2008 +0200
@@ -1,5 +1,15 @@
 2008-10-01  Jim Meyering  <meyering@redhat.com>
 
+	remove trailing spaces
+	* NEWS: Likewise.
+	* lib/poll.c (poll): Likewise.
+	* lib/sys_socket.in.h (SHUT_RDWR): Likewise.
+	* lib/winsock.c (rpl_close): Likewise.
+	* m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
+	* modules/yield: Likewise.
+	* tests/test-poll.c (connect_to_socket, poll1): Likewise.
+	* tests/test-sys_select.c (connect_to_socket): Likewise.
+
 	fts.c: adjust a new interface to be more generally useful
 	* lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
 	(fts_build): Adjust caller.
@@ -10,7 +20,7 @@
 	* tests/test-cond.c: New file.
 
 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
-            Bruno Haible  <bruno@clisp.org>
+	    Bruno Haible  <bruno@clisp.org>
 
 	* modules/cond (Dependencies): Add errno, time.
 	* lib/glthread/cond.h: Include <time.h>.
@@ -18,12 +28,12 @@
 	across platforms.
 
 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
-            Bruno Haible  <bruno@clisp.org>
+	    Bruno Haible  <bruno@clisp.org>
 
 	* m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
 
 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
-            Bruno Haible  <bruno@clisp.org>
+	    Bruno Haible  <bruno@clisp.org>
 
 	* modules/tls-tests (Depends-on): Add thread, yield.
 	(configure.ac): Remove all checks.
@@ -34,7 +44,7 @@
 	(test_tls): Pass an additional NULL argument to gl_thread_join.
 
 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
-            Bruno Haible  <bruno@clisp.org>
+	    Bruno Haible  <bruno@clisp.org>
 
 	* modules/lock-tests (Depends-on): Add thread, yield.
 	(configure.ac): Remove all checks.
--- a/NEWS	Wed Oct 01 09:22:11 2008 +0200
+++ b/NEWS	Wed Oct 01 09:43:40 2008 +0200
@@ -22,7 +22,7 @@
                             will simply improve your code's portability
                             between POSIX platforms and Windows.  In
                             particular, you will be able to use ioctl and
-                            close instead of ioctlsocket and closesocket, 
+                            close instead of ioctlsocket and closesocket,
                             and test errno instead of WSAGetLastError ().
                             On the other hand, you have to audit your code to
                             remove usage of these Winsock-specific functions.
--- a/lib/poll.c	Wed Oct 01 09:22:11 2008 +0200
+++ b/lib/poll.c	Wed Oct 01 09:43:40 2008 +0200
@@ -543,7 +543,7 @@
 	    ev.lNetworkEvents |= FD_WRITE | FD_CONNECT;
 	  if (FD_ISSET ((SOCKET) h, &xfds))
 	    ev.lNetworkEvents |= FD_OOB;
-	     
+
           happened = win32_compute_revents_socket ((SOCKET) h, pfd[i].events,
 						   ev.lNetworkEvents);
         }
--- a/lib/sys_socket.in.h	Wed Oct 01 09:22:11 2008 +0200
+++ b/lib/sys_socket.in.h	Wed Oct 01 09:43:40 2008 +0200
@@ -109,7 +109,7 @@
 extern "C" {
 #  endif
 
-/* Re-define FD_ISSET to avoid a WSA call while we are not using 
+/* Re-define FD_ISSET to avoid a WSA call while we are not using
    network sockets.  */
 static inline int
 rpl_fd_isset (int fd, fd_set * set)
--- a/lib/winsock.c	Wed Oct 01 09:22:11 2008 +0200
+++ b/lib/winsock.c	Wed Oct 01 09:43:40 2008 +0200
@@ -61,7 +61,7 @@
       /* FIXME: other applications, like squid, use an undocumented
 	 _free_osfhnd free function.  Instead, here we just close twice
 	 the file descriptor.  I could not get the former to work
-	 (pb, Sep 22 2008).  */ 
+	 (pb, Sep 22 2008).  */
       int r = closesocket (sock);
       _close (fd);
       return r;
--- a/m4/memcmp.m4	Wed Oct 01 09:22:11 2008 +0200
+++ b/m4/memcmp.m4	Wed Oct 01 09:43:40 2008 +0200
@@ -17,7 +17,7 @@
 				]], [[int ret = memcmp ("foo", "bar", 0);]])],
 			[ac_cv_func_memcmp_working=yes],
 			[ac_cv_func_memcmp_working=no])])
-  fi 
+  fi
   AC_FUNC_MEMCMP
   dnl Note: AC_FUNC_MEMCMP does AC_LIBOBJ(memcmp).
   if test $ac_cv_func_memcmp_working = no; then
--- a/modules/yield	Wed Oct 01 09:22:11 2008 +0200
+++ b/modules/yield	Wed Oct 01 09:43:40 2008 +0200
@@ -12,7 +12,7 @@
 gl_YIELD
 
 Makefile.am:
-lib_SOURCES += glthread/yield.h 
+lib_SOURCES += glthread/yield.h
 
 Include:
 "glthread/yield.h"
--- a/tests/test-poll.c	Wed Oct 01 09:22:11 2008 +0200
+++ b/tests/test-poll.c	Wed Oct 01 09:43:40 2008 +0200
@@ -130,10 +130,10 @@
 #ifdef WIN32_NATIVE
       unsigned long iMode = 1;
       ioctl (s, FIONBIO, (char *) &iMode);
- 
+
 #elif defined F_GETFL
       int oldflags = fcntl (s, F_GETFL, NULL);
- 
+
       if (!(oldflags & O_NONBLOCK))
         fcntl (s, F_SETFL, oldflags | O_NONBLOCK);
 #endif
@@ -161,7 +161,7 @@
   pfd.fd = fd;
   pfd.events = ev;
   pfd.revents = 0;
-  r = poll (&pfd, 1, time);  
+  r = poll (&pfd, 1, time);
   if (r < 0)
     return r;
 
--- a/tests/test-sys_select.c	Wed Oct 01 09:22:11 2008 +0200
+++ b/tests/test-sys_select.c	Wed Oct 01 09:43:40 2008 +0200
@@ -135,10 +135,10 @@
 #ifdef WIN32_NATIVE
       unsigned long iMode = 1;
       ioctl (s, FIONBIO, (char *) &iMode);
- 
+
 #elif defined F_GETFL
       int oldflags = fcntl (s, F_GETFL, NULL);
- 
+
       if (!(oldflags & O_NONBLOCK))
         fcntl (s, F_SETFL, oldflags | O_NONBLOCK);
 #endif