aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2003-01-13 11:59:41 +0000
committerKim F. Storm <[email protected]>2003-01-13 11:59:41 +0000
commit15aeeda5cd25ace6ed88bab75797c0ffd5421aae (patch)
tree030c97351de0f6a59608e8afeb786c89e407e487
parentd4ee5299c900e3d1cb30271445a9b736b890cdd9 (diff)
Put "process enhancements" before "network enhancements".
-rw-r--r--etc/NEWS34
1 files changed, 17 insertions, 17 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 5234010c32..77b3418ae5 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1480,6 +1480,23 @@ inheritance is used when determining the value of a face attribute.
** New functions face-attribute-relative-p and merge-face-attribute
help with handling relative face attributes.
+** Enhancements to process support
+
+*** Function list-processes now has an optional argument; if non-nil,
+only the processes whose query-on-exit flag is set are listed.
+
+*** New set-process-query-on-exit-flag and process-query-on-exit-flag
+functions. The existing process-kill-without-query function is still
+supported, but new code should use the new functions.
+
+*** Function signal-process now accepts a process object or process
+name in addition to a process id to identify the signalled process.
+
+*** Processes now have an associated `private variables' property list
+where programs can maintain process state and other per-process
+related information. The new functions process-variable and
+set-process-variable are used to access and modify this list.
+
** Enhanced networking support.
*** There is a new `make-network-process' function which supports
@@ -1542,23 +1559,6 @@ the fifth is the port number.
connections are accepted in the stopped state. For a client process,
no input is received in the stopped state.
-** Enhancements to process support
-
-*** Function list-processes now has an optional argument; if non-nil,
-only the processes whose query-on-exit flag is set are listed.
-
-*** New set-process-query-on-exit-flag and process-query-on-exit-flag
-functions. The existing process-kill-without-query function is still
-supported, but new code should use the new functions.
-
-*** Function signal-process now accepts a process object or process
-name in addition to a process id to identify the signalled process.
-
-*** Processes now have an associated `private variables' property list
-where programs can maintain process state and other per-process
-related information. The new functions process-variable and
-set-process-variable are used to access and modify this list.
-
** New function copy-tree.
** New function substring-no-properties.