]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct Lisp_Process): New member plist replaces old
authorKim F. Storm <storm@cua.dk>
Tue, 14 Jan 2003 09:55:00 +0000 (09:55 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 14 Jan 2003 09:55:00 +0000 (09:55 +0000)
member private_vars.  All uses changed.

src/process.h

index 64559d1881004cdb4ed876052c71f4e1e1f21d08..bd5241905236595fc15232a697d4e83cfc4c43c8 100644 (file)
@@ -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.