1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(chan_process, Vprocess_alist): No longer static.

This commit is contained in:
Richard M. Stallman 1994-03-02 23:35:11 +00:00
parent f36f4e9e5c
commit 41f3aa98d1

View file

@ -222,10 +222,10 @@ static int keyboard_descriptor;
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).