diff options
| author | Richard M. Stallman | 1994-03-02 23:35:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-02 23:35:11 +0000 |
| commit | 41f3aa98d10576f68df92c4bdecb9d20368be86e (patch) | |
| tree | 4f0312cd24a1dc255d40ec26649719a32af8ca01 /src | |
| parent | f36f4e9e5c70a57fd682ca457324f1e79161f980 (diff) | |
| download | emacs-41f3aa98d10576f68df92c4bdecb9d20368be86e.tar.gz emacs-41f3aa98d10576f68df92c4bdecb9d20368be86e.zip | |
(chan_process, Vprocess_alist): No longer static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; | |||
| 222 | static int delete_exited_processes; | 222 | static int delete_exited_processes; |
| 223 | 223 | ||
| 224 | /* Indexed by descriptor, gives the process (if any) for that descriptor */ | 224 | /* Indexed by descriptor, gives the process (if any) for that descriptor */ |
| 225 | static Lisp_Object chan_process[MAXDESC]; | 225 | Lisp_Object chan_process[MAXDESC]; |
| 226 | 226 | ||
| 227 | /* Alist of elements (NAME . PROCESS) */ | 227 | /* Alist of elements (NAME . PROCESS) */ |
| 228 | static Lisp_Object Vprocess_alist; | 228 | Lisp_Object Vprocess_alist; |
| 229 | 229 | ||
| 230 | /* Buffered-ahead input char from process, indexed by channel. | 230 | /* Buffered-ahead input char from process, indexed by channel. |
| 231 | -1 means empty (no char is buffered). | 231 | -1 means empty (no char is buffered). |