diff options
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 | ||