Mercurial > emacs
diff src/process.c @ 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 | 6b81b2575071 |
| children | 42914264b095 |
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).
