From: Richard M. Stallman Date: Wed, 2 Mar 1994 23:35:11 +0000 (+0000) Subject: (chan_process, Vprocess_alist): No longer static. X-Git-Tag: emacs-19.34~9688 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=41f3aa98d10576f68df92c4bdecb9d20368be86e;p=emacs.git (chan_process, Vprocess_alist): No longer static. --- diff --git a/src/process.c b/src/process.c index 18b9947e0b4..ed87b10bccf 100644 --- a/src/process.c +++ b/src/process.c @@ -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).