aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-14 15:38:57 +0000
committerEli Zaretskii2008-10-14 15:38:57 +0000
commita65f6a855d901da46495c7d4b32d2a4125abc3d7 (patch)
tree89bf6607502263c0307dfa6efff1c79a2dc51877
parent6fdbd4c63c79a8ea45af1926f0d86a06eac3890c (diff)
downloademacs-a65f6a855d901da46495c7d4b32d2a4125abc3d7.tar.gz
emacs-a65f6a855d901da46495c7d4b32d2a4125abc3d7.zip
(Top): Adjust the @detailmenu for the addition of "System Processes" section.
-rw-r--r--doc/lispref/ChangeLog9
-rw-r--r--doc/lispref/elisp.texi3
-rw-r--r--etc/NEWS1
3 files changed, 12 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 92f1f5427ea..b481377cc2d 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,14 @@
12008-10-14 Eli Zaretskii <eliz@gnu.org> 12008-10-14 Eli Zaretskii <eliz@gnu.org>
2 2
3 * processes.texi (System Processes): New section.
4 (Processes, Signals to Processes): Add xrefs to it.
5
6 * objects.texi (Editing Types): A `process' is a subprocess of
7 Emacs, not just any process running on the OS.
8
9 * elisp.texi (Top): Adjust the @detailmenu for the above two
10 changes.
11
3 * sequences.texi (Char-Tables): Remove documentation of 12 * sequences.texi (Char-Tables): Remove documentation of
4 set-char-table-default, which has no effect since Emacs 23. 13 set-char-table-default, which has no effect since Emacs 23.
5 <char-table-range, set-char-table-range>: Don't mention generic 14 <char-table-range, set-char-table-range>: Don't mention generic
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 819f0e3ea05..a04d43a6610 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -278,7 +278,7 @@ Editing Types
278* Frame Type:: Windows subdivide frames. 278* Frame Type:: Windows subdivide frames.
279* Window Configuration Type:: Recording the way a frame is subdivided. 279* Window Configuration Type:: Recording the way a frame is subdivided.
280* Frame Configuration Type:: Recording the status of all frames. 280* Frame Configuration Type:: Recording the status of all frames.
281* Process Type:: A process running on the underlying OS. 281* Process Type:: A subprocess of Emacs running on the underlying OS.
282* Stream Type:: Receive or send characters. 282* Stream Type:: Receive or send characters.
283* Keymap Type:: What function a keystroke invokes. 283* Keymap Type:: What function a keystroke invokes.
284* Overlay Type:: How an overlay is represented. 284* Overlay Type:: How an overlay is represented.
@@ -1188,6 +1188,7 @@ Processes
1188* Output from Processes:: Collecting output from an asynchronous subprocess. 1188* Output from Processes:: Collecting output from an asynchronous subprocess.
1189* Sentinels:: Sentinels run when process run-status changes. 1189* Sentinels:: Sentinels run when process run-status changes.
1190* Query Before Exit:: Whether to query if exiting will kill a process. 1190* Query Before Exit:: Whether to query if exiting will kill a process.
1191* System Processes:: Accessing other processes running on your system.
1191* Transaction Queues:: Transaction-based communication with subprocesses. 1192* Transaction Queues:: Transaction-based communication with subprocesses.
1192* Network:: Opening network connections. 1193* Network:: Opening network connections.
1193* Network Servers:: Network servers let Emacs accept net connections. 1194* Network Servers:: Network servers let Emacs accept net connections.
diff --git a/etc/NEWS b/etc/NEWS
index 8e827ca38f2..0dde6961b9c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1101,6 +1101,7 @@ functions and variables (formerly used for Tamil script).
1101 1101
1102* Lisp Changes in Emacs 23.1 1102* Lisp Changes in Emacs 23.1
1103 1103
1104+++
1104** New primitives `list-system-processes' and `system-process-attributes' 1105** New primitives `list-system-processes' and `system-process-attributes'
1105let Lisp programs access the processes that are running on the local 1106let Lisp programs access the processes that are running on the local
1106machine. See the doc strings of these functions for more details. 1107machine. See the doc strings of these functions for more details.