diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index 624610069d8..ec96c1aa67e 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -235,6 +235,7 @@ static int process_output_skip; | |||
| 235 | #define process_output_delay_count 0 | 235 | #define process_output_delay_count 0 |
| 236 | #endif | 236 | #endif |
| 237 | 237 | ||
| 238 | INFUN (Fget_process, 1); | ||
| 238 | static int keyboard_bit_set (SELECT_TYPE *); | 239 | static int keyboard_bit_set (SELECT_TYPE *); |
| 239 | static void deactivate_process (Lisp_Object); | 240 | static void deactivate_process (Lisp_Object); |
| 240 | static void status_notify (struct Lisp_Process *); | 241 | static void status_notify (struct Lisp_Process *); |
| @@ -782,7 +783,7 @@ nil, indicating the current buffer's process. */) | |||
| 782 | return Qnil; | 783 | return Qnil; |
| 783 | } | 784 | } |
| 784 | 785 | ||
| 785 | DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, | 786 | DEFUE ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, |
| 786 | doc: /* Return the status of PROCESS. | 787 | doc: /* Return the status of PROCESS. |
| 787 | The returned value is one of the following symbols: | 788 | The returned value is one of the following symbols: |
| 788 | run -- for a process that is running. | 789 | run -- for a process that is running. |
| @@ -1083,7 +1084,7 @@ DEFUN ("process-query-on-exit-flag", | |||
| 1083 | } | 1084 | } |
| 1084 | 1085 | ||
| 1085 | #ifdef DATAGRAM_SOCKETS | 1086 | #ifdef DATAGRAM_SOCKETS |
| 1086 | Lisp_Object Fprocess_datagram_address (Lisp_Object process); | 1087 | INFUN (Fprocess_datagram_address, 1); |
| 1087 | #endif | 1088 | #endif |
| 1088 | 1089 | ||
| 1089 | DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, | 1090 | DEFUN ("process-contact", Fprocess_contact, Sprocess_contact, |
| @@ -5775,7 +5776,7 @@ don't send the signal. */) | |||
| 5775 | return process; | 5776 | return process; |
| 5776 | } | 5777 | } |
| 5777 | 5778 | ||
| 5778 | DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0, | 5779 | DEFUE ("kill-process", Fkill_process, Skill_process, 0, 2, 0, |
| 5779 | doc: /* Kill process PROCESS. May be process or name of one. | 5780 | doc: /* Kill process PROCESS. May be process or name of one. |
| 5780 | See function `interrupt-process' for more details on usage. */) | 5781 | See function `interrupt-process' for more details on usage. */) |
| 5781 | (Lisp_Object process, Lisp_Object current_group) | 5782 | (Lisp_Object process, Lisp_Object current_group) |
| @@ -6915,7 +6916,7 @@ close_process_descs (void) | |||
| 6915 | #endif | 6916 | #endif |
| 6916 | } | 6917 | } |
| 6917 | 6918 | ||
| 6918 | DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, | 6919 | DEFUE ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, |
| 6919 | doc: /* Return the (or a) process associated with BUFFER. | 6920 | doc: /* Return the (or a) process associated with BUFFER. |
| 6920 | BUFFER may be a buffer or the name of one. */) | 6921 | BUFFER may be a buffer or the name of one. */) |
| 6921 | (register Lisp_Object buffer) | 6922 | (register Lisp_Object buffer) |
| @@ -6982,8 +6983,8 @@ kill_buffer_processes (Lisp_Object buffer) | |||
| 6982 | #endif /* subprocesses */ | 6983 | #endif /* subprocesses */ |
| 6983 | } | 6984 | } |
| 6984 | 6985 | ||
| 6985 | DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p, | 6986 | DEFUE ("waiting-for-user-input-p", Fwaiting_for_user_input_p, |
| 6986 | 0, 0, 0, | 6987 | Swaiting_for_user_input_p, 0, 0, 0, |
| 6987 | doc: /* Returns non-nil if Emacs is waiting for input from the user. | 6988 | doc: /* Returns non-nil if Emacs is waiting for input from the user. |
| 6988 | This is intended for use by asynchronous process output filters and sentinels. */) | 6989 | This is intended for use by asynchronous process output filters and sentinels. */) |
| 6989 | (void) | 6990 | (void) |