diff options
| author | Kim F. Storm | 2003-01-14 09:55:00 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-14 09:55:00 +0000 |
| commit | 59be51d7f2e526db5180e69396dd4b2909bcba50 (patch) | |
| tree | 1b5fd231d67539857c07df4375a6418e7a29d53d /src/process.h | |
| parent | dfc85ff2eada9050c9f96929e5d41831051c6b44 (diff) | |
| download | emacs-59be51d7f2e526db5180e69396dd4b2909bcba50.tar.gz emacs-59be51d7f2e526db5180e69396dd4b2909bcba50.zip | |
(struct Lisp_Process): New member plist replaces old
member private_vars. All uses changed.
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.h b/src/process.h index 64559d18810..bd524190523 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -60,8 +60,8 @@ struct Lisp_Process | |||
| 60 | /* t if this is a real child process. | 60 | /* t if this is a real child process. |
| 61 | For a net connection, it is a plist based on the arguments to make-network-process. */ | 61 | For a net connection, it is a plist based on the arguments to make-network-process. */ |
| 62 | Lisp_Object childp; | 62 | Lisp_Object childp; |
| 63 | /* Plist for this process' private variables. */ | 63 | /* Plist for programs to keep per-process state information, parameters, etc. */ |
| 64 | Lisp_Object private_vars; | 64 | Lisp_Object plist; |
| 65 | /* Marker set to end of last buffer-inserted output from this process */ | 65 | /* Marker set to end of last buffer-inserted output from this process */ |
| 66 | Lisp_Object mark; | 66 | Lisp_Object mark; |
| 67 | /* Non-nil means kill silently if Emacs is exited. | 67 | /* Non-nil means kill silently if Emacs is exited. |