diff options
| author | Miles Bader | 2005-06-24 01:59:52 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-06-24 01:59:52 +0000 |
| commit | 3f0607e49476578a260289a51a84639b1885c161 (patch) | |
| tree | 076023228279f15587ea24a5a7f9adb499ee969c /src/process.c | |
| parent | 82cf95134905ffe09000888e86e88c9a400a4468 (diff) | |
| parent | ff71329437a5195b60799e019871181c916024ff (diff) | |
| download | emacs-3f0607e49476578a260289a51a84639b1885c161.tar.gz emacs-3f0607e49476578a260289a51a84639b1885c161.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-65
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 425-445)
- Remove "-face" suffix from gnus faces
- Update from CVS
- Remove "-face" suffix from MH-E faces
- Remove "-face" suffix from cc-mode faces
- Remove "-face" suffix from eshell faces
- Remove "-face" suffix from ediff faces
- Implement tty vertical-divider face
- Rename vertical-divider face to vertical-border
- Change escape-glyph color on dark backgrounds back to cyan
- Update reference to renamed Buffer-menu-buffer face
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c index b61c6e8d6fe..bfa803e6907 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2553,7 +2553,7 @@ DEFUN ("make-network-process", Fmake_network_process, Smake_network_process, | |||
| 2553 | In Emacs, network connections are represented by process objects, so | 2553 | In Emacs, network connections are represented by process objects, so |
| 2554 | input and output work as for subprocesses and `delete-process' closes | 2554 | input and output work as for subprocesses and `delete-process' closes |
| 2555 | a network connection. However, a network process has no process id, | 2555 | a network connection. However, a network process has no process id, |
| 2556 | it cannot be signalled, and the status codes are different from normal | 2556 | it cannot be signaled, and the status codes are different from normal |
| 2557 | processes. | 2557 | processes. |
| 2558 | 2558 | ||
| 2559 | Arguments are specified as keyword/argument pairs. The following | 2559 | Arguments are specified as keyword/argument pairs. The following |
| @@ -5833,7 +5833,7 @@ If PROCESS is a network process, inhibit handling of incoming traffic. */) | |||
| 5833 | } | 5833 | } |
| 5834 | #endif | 5834 | #endif |
| 5835 | #ifndef SIGTSTP | 5835 | #ifndef SIGTSTP |
| 5836 | error ("no SIGTSTP support"); | 5836 | error ("No SIGTSTP support"); |
| 5837 | #else | 5837 | #else |
| 5838 | process_send_signal (process, SIGTSTP, current_group, 0); | 5838 | process_send_signal (process, SIGTSTP, current_group, 0); |
| 5839 | #endif | 5839 | #endif |
| @@ -5867,7 +5867,7 @@ If PROCESS is a network process, resume handling of incoming traffic. */) | |||
| 5867 | #ifdef SIGCONT | 5867 | #ifdef SIGCONT |
| 5868 | process_send_signal (process, SIGCONT, current_group, 0); | 5868 | process_send_signal (process, SIGCONT, current_group, 0); |
| 5869 | #else | 5869 | #else |
| 5870 | error ("no SIGCONT support"); | 5870 | error ("No SIGCONT support"); |
| 5871 | #endif | 5871 | #endif |
| 5872 | return process; | 5872 | return process; |
| 5873 | } | 5873 | } |