diff options
| author | Kim F. Storm | 2003-01-12 20:23:45 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2003-01-12 20:23:45 +0000 |
| commit | 2a061f25b23db073a922bfb69fca9928d84042c9 (patch) | |
| tree | 1039f635b67c76e7b88e7646be85efccf71a3515 /src | |
| parent | 3a759d4830e60a32d1f1474059c65b2fa2603520 (diff) | |
| download | emacs-2a061f25b23db073a922bfb69fca9928d84042c9.tar.gz emacs-2a061f25b23db073a922bfb69fca9928d84042c9.zip | |
(struct Lisp_Process): New member private_vars.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 8dc0f1e7249..64559d18810 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -60,6 +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. */ | ||
| 64 | Lisp_Object private_vars; | ||
| 63 | /* 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 */ |
| 64 | Lisp_Object mark; | 66 | Lisp_Object mark; |
| 65 | /* Non-nil means kill silently if Emacs is exited. | 67 | /* Non-nil means kill silently if Emacs is exited. |