aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2003-01-14 09:55:00 +0000
committerKim F. Storm <[email protected]>2003-01-14 09:55:00 +0000
commit59be51d7f2e526db5180e69396dd4b2909bcba50 (patch)
tree1b5fd231d67539857c07df4375a6418e7a29d53d
parentdfc85ff2eada9050c9f96929e5d41831051c6b44 (diff)
(struct Lisp_Process): New member plist replaces old
member private_vars. All uses changed.
-rw-r--r--src/process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h
index 64559d1881..bd52419052 100644
--- a/src/process.h
+++ b/src/process.h
@@ -60,8 +60,8 @@ struct Lisp_Process
/* t if this is a real child process.
For a net connection, it is a plist based on the arguments to make-network-process. */
Lisp_Object childp;
- /* Plist for this process' private variables. */
- Lisp_Object private_vars;
+ /* Plist for programs to keep per-process state information, parameters, etc. */
+ Lisp_Object plist;
/* Marker set to end of last buffer-inserted output from this process */
Lisp_Object mark;
/* Non-nil means kill silently if Emacs is exited.