diff options
| author | Glenn Morris | 2012-04-17 20:48:43 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-04-17 20:48:43 -0700 |
| commit | 016a35dfa7c48255b7e461dc8a2441a643c8731c (patch) | |
| tree | 87a9df5df48d1067f4384685f7450dce8e3e0151 /src/process.c | |
| parent | d666446d7da49d504a5cc548321a77ecb405952e (diff) | |
| download | emacs-016a35dfa7c48255b7e461dc8a2441a643c8731c.tar.gz emacs-016a35dfa7c48255b7e461dc8a2441a643c8731c.zip | |
More process-related doc and manual small edits
* doc/lispref/processes.texi (Output from Processes, Filter Functions):
Mention waiting-for-user-input-p.
(Sentinels, Query Before Exit, System Processes, Transaction Queues):
(Network Servers, Datagrams, Network Processes, Network Options)
(Network Feature Testing, Serial Ports): Copyedits.
(Network): Add encrypted network overview paragraph.
Cross-reference the Emacs-GnuTLS manual. Use @acronym.
* lisp/net/network-stream.el (open-network-stream): Doc fix.
* src/process.c (Fset_process_inherit_coding_system_flag)
(Fset_process_query_on_exit_flag): Doc fix (mention return value).
(Fmake_network_process): Doc fix.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c index dc43191ebef..f6ea5d75e1a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1070,7 +1070,9 @@ is more appropriate for saving the process buffer. | |||
| 1070 | 1070 | ||
| 1071 | Binding the variable `inherit-process-coding-system' to non-nil before | 1071 | Binding the variable `inherit-process-coding-system' to non-nil before |
| 1072 | starting the process is an alternative way of setting the inherit flag | 1072 | starting the process is an alternative way of setting the inherit flag |
| 1073 | for the process which will run. */) | 1073 | for the process which will run. |
| 1074 | |||
| 1075 | This function returns FLAG. */) | ||
| 1074 | (register Lisp_Object process, Lisp_Object flag) | 1076 | (register Lisp_Object process, Lisp_Object flag) |
| 1075 | { | 1077 | { |
| 1076 | CHECK_PROCESS (process); | 1078 | CHECK_PROCESS (process); |
| @@ -1083,7 +1085,8 @@ DEFUN ("set-process-query-on-exit-flag", | |||
| 1083 | 2, 2, 0, | 1085 | 2, 2, 0, |
| 1084 | doc: /* Specify if query is needed for PROCESS when Emacs is exited. | 1086 | doc: /* Specify if query is needed for PROCESS when Emacs is exited. |
| 1085 | If the second argument FLAG is non-nil, Emacs will query the user before | 1087 | If the second argument FLAG is non-nil, Emacs will query the user before |
| 1086 | exiting or killing a buffer if PROCESS is running. */) | 1088 | exiting or killing a buffer if PROCESS is running. This function |
| 1089 | returns FLAG. */) | ||
| 1087 | (register Lisp_Object process, Lisp_Object flag) | 1090 | (register Lisp_Object process, Lisp_Object flag) |
| 1088 | { | 1091 | { |
| 1089 | CHECK_PROCESS (process); | 1092 | CHECK_PROCESS (process); |
| @@ -2794,7 +2797,7 @@ The stopped state is cleared by `continue-process' and set by | |||
| 2794 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the | 2797 | :filter-multibyte BOOL -- If BOOL is non-nil, strings given to the |
| 2795 | process filter are multibyte, otherwise they are unibyte. | 2798 | process filter are multibyte, otherwise they are unibyte. |
| 2796 | If this keyword is not specified, the strings are multibyte if | 2799 | If this keyword is not specified, the strings are multibyte if |
| 2797 | `default-enable-multibyte-characters' is non-nil. | 2800 | the default value of `enable-multibyte-characters' is non-nil. |
| 2798 | 2801 | ||
| 2799 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. | 2802 | :sentinel SENTINEL -- Install SENTINEL as the process sentinel. |
| 2800 | 2803 | ||