changeset 107523:dda920d04029

* processes.texi (Network Processes): Document seqpacket type.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 21 Mar 2010 11:28:53 -0400
parents 2ba213d1dc9a
children ec5432ca82a4
files doc/lispref/ChangeLog doc/lispref/processes.texi etc/NEWS
diffstat 3 files changed, 14 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/doc/lispref/ChangeLog	Sun Mar 21 11:09:29 2010 -0400
+++ b/doc/lispref/ChangeLog	Sun Mar 21 11:28:53 2010 -0400
@@ -1,3 +1,7 @@
+2010-03-21  Chong Yidong  <cyd@stupidchicken.com>
+
+	* processes.texi (Network Processes): Document seqpacket type.
+
 2010-03-06  Chong Yidong  <cyd@stupidchicken.com>
 
 	* objects.texi (Integer Type): Take note of the read syntax
--- a/doc/lispref/processes.texi	Sun Mar 21 11:09:29 2010 -0400
+++ b/doc/lispref/processes.texi	Sun Mar 21 11:28:53 2010 -0400
@@ -2059,7 +2059,8 @@
 @item :type @var{type}
 Specify the communication type.  A value of @code{nil} specifies a
 stream connection (the default); @code{datagram} specifies a datagram
-connection.  Both connections and servers can be of either type.
+connection; @code{seqpacket} specifies a ``sequenced packet stream''
+connection.  Both connections and servers can be of these types.
 
 @item :server @var{server-flag}
 If @var{server-flag} is non-@code{nil}, create a server.  Otherwise,
--- a/etc/NEWS	Sun Mar 21 11:09:29 2010 -0400
+++ b/etc/NEWS	Sun Mar 21 11:28:53 2010 -0400
@@ -335,22 +335,17 @@
 are stripped when copying text from the ChangeLog to the *VC-Log* buffer.
 
 ** Elint
-
 ---
 *** Elint now uses compilation-mode.
-
 ---
 *** Elint can now scan individual files and whole directories,
 and can be run in batch mode.
-
 ---
 *** Elint does a more thorough initialization, and recognizes more built-in
 functions and variables.  Customize `elint-scan-preloaded' if you want
 to sacrifice some accuracy for a faster startup.
-
 ---
 *** Elint attempts some basic understanding of featurep and (f)boundp tests.
-
 ---
 *** Customize `elint-ignored-warnings' to suppress some warnings.
 
@@ -373,19 +368,16 @@
 `multi-isearch-files-regexp' read file names to search, one by one,
 ended with RET.  With a prefix argument, they ask for a wildcard, and
 search in file buffers whose file names match the specified wildcard.
-
 +++
 *** Autorevert Tail mode now works also for remote files.
-
 +++
 *** The new built-in commands `su' and `sudo' support Tramp.
 That means, they change `default-directory' to the new users value,
 and let commands run under that user permissions.  It works even when
 `default-directory' is already remote.  Calling the external commands
 is possible by `*su' or `*sudo', repectively.
-
 ---
-*** When running in a new enough xterm (newer than version 242), emacs
+*** When running in a new enough xterm (newer than version 242), Emacs
 asks xterm what the background color is and it sets up faces
 accordingly for a dark background if needed (the current default is to
 consider the background light).
@@ -505,7 +497,6 @@
 ** Changes to file-manipulation functions
 +++
 *** `delete-directory' has an optional parameter RECURSIVE.
-
 +++
 *** New function `copy-directory', which copies a directory recursively.
 
@@ -521,15 +512,15 @@
 of bindings.
 
 ** Network and process changes
-
++++
 *** start-process-shell-command and start-file-process-shell-command
 now only take a single `command' argument.
-
-*** The variable `process-file-side-effects' shall be bound to nil, if
-a `process-file' call does not change a remote file.  By this, file
-name handlers like Tramp can apply optimizations.
-
-*** make-network-socket can now also create `seqpacket' Unix sockets.
++++
+*** The new variable `process-file-side-effects' should be set to nil
+if a `process-file' call does not change a remote file.  This allows
+file name handlers such as Tramp to optimizations.
++++
+*** make-network-process can now also create `seqpacket' Unix sockets.
 
 ** Loading changes