# HG changeset patch # User Kim F. Storm # Date 1042538100 0 # Node ID bfa7cad7b5242d333bba118224ff0141c48ee58b # Parent 1d842f148f6ee499f51d6f8b735934939b9dae6c (struct Lisp_Process): New member plist replaces old member private_vars. All uses changed. diff -r 1d842f148f6e -r bfa7cad7b524 src/process.h --- a/src/process.h Tue Jan 14 00:21:30 2003 +0000 +++ b/src/process.h Tue Jan 14 09:55:00 2003 +0000 @@ -60,8 +60,8 @@ /* 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.