aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.h b/src/process.h
index 72e8af70262..0ff374ee47f 100644
--- a/src/process.h
+++ b/src/process.h
@@ -27,13 +27,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27/* This structure records information about a subprocess 27/* This structure records information about a subprocess
28 or network connection. 28 or network connection.
29 29
30 Every field in this structure except for the first two 30 Every field in this structure except for the header
31 must be a Lisp_Object, for GC's sake. */ 31 must be a Lisp_Object, for GC's sake. */
32 32
33struct Lisp_Process 33struct Lisp_Process
34 { 34 {
35 EMACS_UINT size; 35 struct vectorlike_header header;
36 struct Lisp_Vector *v_next; 36
37 /* Name of subprocess terminal. */ 37 /* Name of subprocess terminal. */
38 Lisp_Object tty_name; 38 Lisp_Object tty_name;
39 /* Name of this process */ 39 /* Name of this process */