changeset 6164:d047d5a48e0e

(chan_process, Vprocess_alist): No longer static.
author Richard M. Stallman <rms@gnu.org>
date Wed, 02 Mar 1994 23:35:11 +0000
parents f349bcb0ff59
children 9c0cc4128da8
files src/process.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Wed Mar 02 23:26:06 1994 +0000
+++ b/src/process.c	Wed Mar 02 23:35:11 1994 +0000
@@ -222,10 +222,10 @@
 static int delete_exited_processes;
 
 /* Indexed by descriptor, gives the process (if any) for that descriptor */
-static Lisp_Object chan_process[MAXDESC];
+Lisp_Object chan_process[MAXDESC];
 
 /* Alist of elements (NAME . PROCESS) */
-static Lisp_Object Vprocess_alist;
+Lisp_Object Vprocess_alist;
 
 /* Buffered-ahead input char from process, indexed by channel.
    -1 means empty (no char is buffered).