diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 19:16:00 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-13 19:16:00 -0700 |
commit | 40ccffa6ff0f62689cac373e3d21d25084c1b7b3 (patch) | |
tree | c1cf10b54e34c07a83fdcb7a572da10a2361c21a /src/process.h | |
parent | ad64fc978bc5a83e25827ab4f55d4cbc8d0dd25a (diff) | |
download | emacs-40ccffa6ff0f62689cac373e3d21d25084c1b7b3.tar.gz |
* process.c: Make symbols static if they're not exported.
(process_tick, update_tick, create_process, chan_process):
(Vprocess_alist, proc_buffered_char, datagram_access):
(fd_callback_data, send_process_frame, process_sent_to): Now static.
(deactivate_process): Mark defn as static, as well as decl.
* lisp.h (create_process): Remove decl.
* process.h (chan_process, Vprocess_alist): Remove decls.
Diffstat (limited to 'src/process.h')
-rw-r--r-- | src/process.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/process.h b/src/process.h index 1e90f553b38..0348f211bb9 100644 --- a/src/process.h +++ b/src/process.h @@ -143,12 +143,6 @@ struct Lisp_Process #define ChannelMask(n) (1<<(n)) -/* Indexed by descriptor, gives the process (if any) for that descriptor. */ -extern Lisp_Object chan_process[]; - -/* Alist of elements (NAME . PROCESS). */ -extern Lisp_Object Vprocess_alist; - /* True if we are about to fork off a synchronous process or if we are waiting for it. */ extern int synch_process_alive; |