diff options
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c index 7efbab11190..0cec8977ad0 100644 --- a/src/process.c +++ b/src/process.c @@ -783,7 +783,7 @@ nil, indicating the current buffer's process. */) return Qnil; } -DEFUE ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, +DEFUN ("process-status", Fprocess_status, Sprocess_status, 1, 1, 0, doc: /* Return the status of PROCESS. The returned value is one of the following symbols: run -- for a process that is running. @@ -5776,7 +5776,7 @@ don't send the signal. */) return process; } -DEFUE ("kill-process", Fkill_process, Skill_process, 0, 2, 0, +DEFUN ("kill-process", Fkill_process, Skill_process, 0, 2, 0, doc: /* Kill process PROCESS. May be process or name of one. See function `interrupt-process' for more details on usage. */) (Lisp_Object process, Lisp_Object current_group) @@ -6916,7 +6916,7 @@ close_process_descs (void) #endif } -DEFUE ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, +DEFUN ("get-buffer-process", Fget_buffer_process, Sget_buffer_process, 1, 1, 0, doc: /* Return the (or a) process associated with BUFFER. BUFFER may be a buffer or the name of one. */) (register Lisp_Object buffer) @@ -6983,7 +6983,7 @@ kill_buffer_processes (Lisp_Object buffer) #endif /* subprocesses */ } -DEFUE ("waiting-for-user-input-p", Fwaiting_for_user_input_p, +DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, Swaiting_for_user_input_p, 0, 0, 0, doc: /* Returns non-nil if Emacs is waiting for input from the user. This is intended for use by asynchronous process output filters and sentinels. */) |