changeset 4257:f8b1ea675224

(Fprocess_status): Use Fget_process, to avoid error if unknown process name.
author Richard M. Stallman <rms@gnu.org>
date Sat, 24 Jul 1993 05:47:16 +0000
parents aaf846efe4cb
children 8f02e992e4dc
files src/process.c
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Sat Jul 24 05:33:38 1993 +0000
+++ b/src/process.c	Sat Jul 24 05:47:16 1993 +0000
@@ -631,14 +631,12 @@
 nil -- if arg is a process name and no such process exists.\n\
 PROCESS may be a process, a buffer, the name of a process or buffer, or\n\
 nil, indicating the current buffer's process.")
-/* command -- for a command channel opened to Emacs by another process.\n\
-   external -- for an i/o channel opened to Emacs by another process.\n\  */
   (proc)
      register Lisp_Object proc;
 {
   register struct Lisp_Process *p;
   register Lisp_Object status;
-  proc = get_process (proc);
+  proc = Fget_process (proc);
   if (NILP (proc))
     return proc;
   p = XPROCESS (proc);