# HG changeset patch # User Chong Yidong # Date 1269185333 14400 # Node ID dda920d04029ddd93a5859c3d93a8a7c4601060c # Parent 2ba213d1dc9a4a9ea0f8568d1600782ca08969f2 * processes.texi (Network Processes): Document seqpacket type. diff -r 2ba213d1dc9a -r dda920d04029 doc/lispref/ChangeLog --- 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 + + * processes.texi (Network Processes): Document seqpacket type. + 2010-03-06 Chong Yidong * objects.texi (Integer Type): Take note of the read syntax diff -r 2ba213d1dc9a -r dda920d04029 doc/lispref/processes.texi --- 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, diff -r 2ba213d1dc9a -r dda920d04029 etc/NEWS --- 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