2769b39e5e0b7c4c792ea584ed16cd60377058a4
[bpt/emacs.git] / doc / lispref / internals.texi
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990-1993, 1998-1999, 2001-2012 Free Software Foundation, Inc.
4 @c See the file elisp.texi for copying conditions.
5 @setfilename ../../info/internals
6 @node GNU Emacs Internals, Standard Errors, Tips, Top
7 @comment node-name, next, previous, up
8 @appendix GNU Emacs Internals
9
10 This chapter describes how the runnable Emacs executable is dumped with
11 the preloaded Lisp libraries in it, how storage is allocated, and some
12 internal aspects of GNU Emacs that may be of interest to C programmers.
13
14 @menu
15 * Building Emacs:: How the dumped Emacs is made.
16 * Pure Storage:: Kludge to make preloaded Lisp functions shareable.
17 * Garbage Collection:: Reclaiming space for Lisp objects no longer used.
18 * Memory Usage:: Info about total size of Lisp objects made so far.
19 * Writing Emacs Primitives:: Writing C code for Emacs.
20 * Object Internals:: Data formats of buffers, windows, processes.
21 @end menu
22
23 @node Building Emacs
24 @section Building Emacs
25 @cindex building Emacs
26 @pindex temacs
27
28 This section explains the steps involved in building the Emacs
29 executable. You don't have to know this material to build and install
30 Emacs, since the makefiles do all these things automatically. This
31 information is pertinent to Emacs maintenance.
32
33 Compilation of the C source files in the @file{src} directory
34 produces an executable file called @file{temacs}, also called a
35 @dfn{bare impure Emacs}. It contains the Emacs Lisp interpreter and I/O
36 routines, but not the editing commands.
37
38 @cindex @file{loadup.el}
39 The command @w{@samp{temacs -l loadup}} uses @file{temacs} to create
40 the real runnable Emacs executable. These arguments direct
41 @file{temacs} to evaluate the Lisp files specified in the file
42 @file{loadup.el}. These files set up the normal Emacs editing
43 environment, resulting in an Emacs that is still impure but no longer
44 bare.
45
46 @cindex dumping Emacs
47 It takes some time to load the standard Lisp files. Luckily,
48 you don't have to do this each time you run Emacs; @file{temacs} can
49 dump out an executable program called @file{emacs} that has these files
50 preloaded. @file{emacs} starts more quickly because it does not need to
51 load the files. This is the Emacs executable that is normally
52 installed.
53
54 @vindex preloaded-file-list
55 @cindex dumped Lisp files
56 To create @file{emacs}, use the command @samp{temacs -batch -l loadup
57 dump}. The purpose of @samp{-batch} here is to prevent @file{temacs}
58 from trying to initialize any of its data on the terminal; this ensures
59 that the tables of terminal information are empty in the dumped Emacs.
60 The argument @samp{dump} tells @file{loadup.el} to dump a new executable
61 named @file{emacs}. The variable @code{preloaded-file-list} stores a
62 list of the Lisp files that were dumped with the @file{emacs} executable.
63
64 If you port Emacs to a new operating system, and are not able to
65 implement dumping, then Emacs must load @file{loadup.el} each time it
66 starts.
67
68 @cindex @file{site-load.el}
69 You can specify additional files to preload by writing a library named
70 @file{site-load.el} that loads them. You may need to rebuild Emacs
71 with an added definition
72
73 @example
74 #define SITELOAD_PURESIZE_EXTRA @var{n}
75 @end example
76
77 @noindent
78 to make @var{n} added bytes of pure space to hold the additional files;
79 see @file{src/puresize.h}.
80 (Try adding increments of 20000 until it is big enough.) However, the
81 advantage of preloading additional files decreases as machines get
82 faster. On modern machines, it is usually not advisable.
83
84 After @file{loadup.el} reads @file{site-load.el}, it finds the
85 documentation strings for primitive and preloaded functions (and
86 variables) in the file @file{etc/DOC} where they are stored, by
87 calling @code{Snarf-documentation} (@pxref{Definition of
88 Snarf-documentation,, Accessing Documentation}).
89
90 @cindex @file{site-init.el}
91 @cindex preloading additional functions and variables
92 You can specify other Lisp expressions to execute just before dumping
93 by putting them in a library named @file{site-init.el}. This file is
94 executed after the documentation strings are found.
95
96 If you want to preload function or variable definitions, there are
97 three ways you can do this and make their documentation strings
98 accessible when you subsequently run Emacs:
99
100 @itemize @bullet
101 @item
102 Arrange to scan these files when producing the @file{etc/DOC} file,
103 and load them with @file{site-load.el}.
104
105 @item
106 Load the files with @file{site-init.el}, then copy the files into the
107 installation directory for Lisp files when you install Emacs.
108
109 @item
110 Specify a @code{nil} value for @code{byte-compile-dynamic-docstrings}
111 as a local variable in each of these files, and load them with either
112 @file{site-load.el} or @file{site-init.el}. (This method has the
113 drawback that the documentation strings take up space in Emacs all the
114 time.)
115 @end itemize
116
117 It is not advisable to put anything in @file{site-load.el} or
118 @file{site-init.el} that would alter any of the features that users
119 expect in an ordinary unmodified Emacs. If you feel you must override
120 normal features for your site, do it with @file{default.el}, so that
121 users can override your changes if they wish. @xref{Startup Summary}.
122
123 In a package that can be preloaded, it is sometimes necessary (or
124 useful) to delay certain evaluations until Emacs subsequently starts
125 up. The vast majority of such cases relate to the values of
126 customizable variables. For example, @code{tutorial-directory} is a
127 variable defined in @file{startup.el}, which is preloaded. The default
128 value is set based on @code{data-directory}. The variable needs to
129 access the value of @code{data-directory} when Emacs starts, not when
130 it is dumped, because the Emacs executable has probably been installed
131 in a different location since it was dumped.
132
133 @defun custom-initialize-delay symbol value
134 This function delays the initialization of @var{symbol} to the next
135 Emacs start. You normally use this function by specifying it as the
136 @code{:initialize} property of a customizable variable. (The argument
137 @var{value} is unused, and is provided only for compatiblity with the
138 form Custom expects.)
139 @end defun
140
141 In the unlikely event that you need a more general functionality than
142 @code{custom-initialize-delay} provides, you can use
143 @code{before-init-hook} (@pxref{Startup Summary}).
144
145 @defun dump-emacs to-file from-file
146 @cindex unexec
147 This function dumps the current state of Emacs into an executable file
148 @var{to-file}. It takes symbols from @var{from-file} (this is normally
149 the executable file @file{temacs}).
150
151 If you want to use this function in an Emacs that was already dumped,
152 you must run Emacs with @samp{-batch}.
153 @end defun
154
155 @node Pure Storage
156 @section Pure Storage
157 @cindex pure storage
158
159 Emacs Lisp uses two kinds of storage for user-created Lisp objects:
160 @dfn{normal storage} and @dfn{pure storage}. Normal storage is where
161 all the new data created during an Emacs session are kept; see the
162 following section for information on normal storage. Pure storage is
163 used for certain data in the preloaded standard Lisp files---data that
164 should never change during actual use of Emacs.
165
166 Pure storage is allocated only while @file{temacs} is loading the
167 standard preloaded Lisp libraries. In the file @file{emacs}, it is
168 marked as read-only (on operating systems that permit this), so that
169 the memory space can be shared by all the Emacs jobs running on the
170 machine at once. Pure storage is not expandable; a fixed amount is
171 allocated when Emacs is compiled, and if that is not sufficient for
172 the preloaded libraries, @file{temacs} allocates dynamic memory for
173 the part that didn't fit. If that happens, you should increase the
174 compilation parameter @code{PURESIZE} in the file
175 @file{src/puresize.h} and rebuild Emacs, even though the resulting
176 image will work: garbage collection is disabled in this situation,
177 causing a memory leak. Such an overflow normally won't happen unless you
178 try to preload additional libraries or add features to the standard
179 ones. Emacs will display a warning about the overflow when it
180 starts.
181
182 @defun purecopy object
183 This function makes a copy in pure storage of @var{object}, and returns
184 it. It copies a string by simply making a new string with the same
185 characters, but without text properties, in pure storage. It
186 recursively copies the contents of vectors and cons cells. It does
187 not make copies of other objects such as symbols, but just returns
188 them unchanged. It signals an error if asked to copy markers.
189
190 This function is a no-op except while Emacs is being built and dumped;
191 it is usually called only in the file @file{emacs/lisp/loaddefs.el}, but
192 a few packages call it just in case you decide to preload them.
193 @end defun
194
195 @defvar pure-bytes-used
196 The value of this variable is the number of bytes of pure storage
197 allocated so far. Typically, in a dumped Emacs, this number is very
198 close to the total amount of pure storage available---if it were not,
199 we would preallocate less.
200 @end defvar
201
202 @defvar purify-flag
203 This variable determines whether @code{defun} should make a copy of the
204 function definition in pure storage. If it is non-@code{nil}, then the
205 function definition is copied into pure storage.
206
207 This flag is @code{t} while loading all of the basic functions for
208 building Emacs initially (allowing those functions to be shareable and
209 non-collectible). Dumping Emacs as an executable always writes
210 @code{nil} in this variable, regardless of the value it actually has
211 before and after dumping.
212
213 You should not change this flag in a running Emacs.
214 @end defvar
215
216 @node Garbage Collection
217 @section Garbage Collection
218 @cindex garbage collection
219
220 @cindex memory allocation
221 When a program creates a list or the user defines a new function (such
222 as by loading a library), that data is placed in normal storage. If
223 normal storage runs low, then Emacs asks the operating system to
224 allocate more memory in blocks of 1k bytes. Each block is used for one
225 type of Lisp object, so symbols, cons cells, markers, etc., are
226 segregated in distinct blocks in memory. (Vectors, long strings,
227 buffers and certain other editing types, which are fairly large, are
228 allocated in individual blocks, one per object, while small strings are
229 packed into blocks of 8k bytes.)
230
231 It is quite common to use some storage for a while, then release it by
232 (for example) killing a buffer or deleting the last pointer to an
233 object. Emacs provides a @dfn{garbage collector} to reclaim this
234 abandoned storage. (This name is traditional, but ``garbage recycler''
235 might be a more intuitive metaphor for this facility.)
236
237 The garbage collector operates by finding and marking all Lisp objects
238 that are still accessible to Lisp programs. To begin with, it assumes
239 all the symbols, their values and associated function definitions, and
240 any data presently on the stack, are accessible. Any objects that can
241 be reached indirectly through other accessible objects are also
242 accessible.
243
244 When marking is finished, all objects still unmarked are garbage. No
245 matter what the Lisp program or the user does, it is impossible to refer
246 to them, since there is no longer a way to reach them. Their space
247 might as well be reused, since no one will miss them. The second
248 (``sweep'') phase of the garbage collector arranges to reuse them.
249
250 @c ??? Maybe add something describing weak hash tables here?
251
252 @cindex free list
253 The sweep phase puts unused cons cells onto a @dfn{free list}
254 for future allocation; likewise for symbols and markers. It compacts
255 the accessible strings so they occupy fewer 8k blocks; then it frees the
256 other 8k blocks. Vectors, buffers, windows, and other large objects are
257 individually allocated and freed using @code{malloc} and @code{free}.
258
259 @cindex CL note---allocate more storage
260 @quotation
261 @b{Common Lisp note:} Unlike other Lisps, GNU Emacs Lisp does not
262 call the garbage collector when the free list is empty. Instead, it
263 simply requests the operating system to allocate more storage, and
264 processing continues until @code{gc-cons-threshold} bytes have been
265 used.
266
267 This means that you can make sure that the garbage collector will not
268 run during a certain portion of a Lisp program by calling the garbage
269 collector explicitly just before it (provided that portion of the
270 program does not use so much space as to force a second garbage
271 collection).
272 @end quotation
273
274 @deffn Command garbage-collect
275 This command runs a garbage collection, and returns information on
276 the amount of space in use. (Garbage collection can also occur
277 spontaneously if you use more than @code{gc-cons-threshold} bytes of
278 Lisp data since the previous garbage collection.)
279
280 @code{garbage-collect} returns a list containing the following
281 information:
282
283 @example
284 @group
285 ((@var{used-conses} . @var{free-conses})
286 (@var{used-syms} . @var{free-syms})
287 @end group
288 (@var{used-miscs} . @var{free-miscs})
289 @var{used-string-chars}
290 @var{used-vector-slots}
291 (@var{used-floats} . @var{free-floats})
292 (@var{used-intervals} . @var{free-intervals})
293 (@var{used-strings} . @var{free-strings}))
294 @end example
295
296 Here is an example:
297
298 @example
299 @group
300 (garbage-collect)
301 @result{} ((106886 . 13184) (9769 . 0)
302 (7731 . 4651) 347543 121628
303 (31 . 94) (1273 . 168)
304 (25474 . 3569))
305 @end group
306 @end example
307
308 Here is a table explaining each element:
309
310 @table @var
311 @item used-conses
312 The number of cons cells in use.
313
314 @item free-conses
315 The number of cons cells for which space has been obtained from the
316 operating system, but that are not currently being used.
317
318 @item used-syms
319 The number of symbols in use.
320
321 @item free-syms
322 The number of symbols for which space has been obtained from the
323 operating system, but that are not currently being used.
324
325 @item used-miscs
326 The number of miscellaneous objects in use. These include markers and
327 overlays, plus certain objects not visible to users.
328
329 @item free-miscs
330 The number of miscellaneous objects for which space has been obtained
331 from the operating system, but that are not currently being used.
332
333 @item used-string-chars
334 The total size of all strings, in characters.
335
336 @item used-vector-slots
337 The total number of elements of existing vectors.
338
339 @item used-floats
340 @c Emacs 19 feature
341 The number of floats in use.
342
343 @item free-floats
344 @c Emacs 19 feature
345 The number of floats for which space has been obtained from the
346 operating system, but that are not currently being used.
347
348 @item used-intervals
349 The number of intervals in use. Intervals are an internal
350 data structure used for representing text properties.
351
352 @item free-intervals
353 The number of intervals for which space has been obtained
354 from the operating system, but that are not currently being used.
355
356 @item used-strings
357 The number of strings in use.
358
359 @item free-strings
360 The number of string headers for which the space was obtained from the
361 operating system, but which are currently not in use. (A string
362 object consists of a header and the storage for the string text
363 itself; the latter is only allocated when the string is created.)
364 @end table
365
366 If there was overflow in pure space (see the previous section),
367 @code{garbage-collect} returns @code{nil}, because a real garbage
368 collection can not be done in this situation.
369 @end deffn
370
371 @defopt garbage-collection-messages
372 If this variable is non-@code{nil}, Emacs displays a message at the
373 beginning and end of garbage collection. The default value is
374 @code{nil}, meaning there are no such messages.
375 @end defopt
376
377 @defvar post-gc-hook
378 This is a normal hook that is run at the end of garbage collection.
379 Garbage collection is inhibited while the hook functions run, so be
380 careful writing them.
381 @end defvar
382
383 @defopt gc-cons-threshold
384 The value of this variable is the number of bytes of storage that must
385 be allocated for Lisp objects after one garbage collection in order to
386 trigger another garbage collection. A cons cell counts as eight bytes,
387 a string as one byte per character plus a few bytes of overhead, and so
388 on; space allocated to the contents of buffers does not count. Note
389 that the subsequent garbage collection does not happen immediately when
390 the threshold is exhausted, but only the next time the Lisp evaluator is
391 called.
392
393 The initial threshold value is 400,000. If you specify a larger
394 value, garbage collection will happen less often. This reduces the
395 amount of time spent garbage collecting, but increases total memory use.
396 You may want to do this when running a program that creates lots of
397 Lisp data.
398
399 You can make collections more frequent by specifying a smaller value,
400 down to 10,000. A value less than 10,000 will remain in effect only
401 until the subsequent garbage collection, at which time
402 @code{garbage-collect} will set the threshold back to 10,000.
403 @end defopt
404
405 @defopt gc-cons-percentage
406 The value of this variable specifies the amount of consing before a
407 garbage collection occurs, as a fraction of the current heap size.
408 This criterion and @code{gc-cons-threshold} apply in parallel, and
409 garbage collection occurs only when both criteria are satisfied.
410
411 As the heap size increases, the time to perform a garbage collection
412 increases. Thus, it can be desirable to do them less frequently in
413 proportion.
414 @end defopt
415
416 The value returned by @code{garbage-collect} describes the amount of
417 memory used by Lisp data, broken down by data type. By contrast, the
418 function @code{memory-limit} provides information on the total amount of
419 memory Emacs is currently using.
420
421 @c Emacs 19 feature
422 @defun memory-limit
423 This function returns the address of the last byte Emacs has allocated,
424 divided by 1024. We divide the value by 1024 to make sure it fits in a
425 Lisp integer.
426
427 You can use this to get a general idea of how your actions affect the
428 memory usage.
429 @end defun
430
431 @defvar memory-full
432 This variable is @code{t} if Emacs is close to out of memory for Lisp
433 objects, and @code{nil} otherwise.
434 @end defvar
435
436 @defun memory-use-counts
437 This returns a list of numbers that count the number of objects
438 created in this Emacs session. Each of these counters increments for
439 a certain kind of object. See the documentation string for details.
440 @end defun
441
442 @defvar gcs-done
443 This variable contains the total number of garbage collections
444 done so far in this Emacs session.
445 @end defvar
446
447 @defvar gc-elapsed
448 This variable contains the total number of seconds of elapsed time
449 during garbage collection so far in this Emacs session, as a floating
450 point number.
451 @end defvar
452
453 @node Memory Usage
454 @section Memory Usage
455 @cindex memory usage
456
457 These functions and variables give information about the total amount
458 of memory allocation that Emacs has done, broken down by data type.
459 Note the difference between these and the values returned by
460 @code{(garbage-collect)}; those count objects that currently exist, but
461 these count the number or size of all allocations, including those for
462 objects that have since been freed.
463
464 @defvar cons-cells-consed
465 The total number of cons cells that have been allocated so far
466 in this Emacs session.
467 @end defvar
468
469 @defvar floats-consed
470 The total number of floats that have been allocated so far
471 in this Emacs session.
472 @end defvar
473
474 @defvar vector-cells-consed
475 The total number of vector cells that have been allocated so far
476 in this Emacs session.
477 @end defvar
478
479 @defvar symbols-consed
480 The total number of symbols that have been allocated so far
481 in this Emacs session.
482 @end defvar
483
484 @defvar string-chars-consed
485 The total number of string characters that have been allocated so far
486 in this Emacs session.
487 @end defvar
488
489 @defvar misc-objects-consed
490 The total number of miscellaneous objects that have been allocated so
491 far in this Emacs session. These include markers and overlays, plus
492 certain objects not visible to users.
493 @end defvar
494
495 @defvar intervals-consed
496 The total number of intervals that have been allocated so far
497 in this Emacs session.
498 @end defvar
499
500 @defvar strings-consed
501 The total number of strings that have been allocated so far in this
502 Emacs session.
503 @end defvar
504
505 @node Writing Emacs Primitives
506 @section Writing Emacs Primitives
507 @cindex primitive function internals
508 @cindex writing Emacs primitives
509
510 Lisp primitives are Lisp functions implemented in C. The details of
511 interfacing the C function so that Lisp can call it are handled by a few
512 C macros. The only way to really understand how to write new C code is
513 to read the source, but we can explain some things here.
514
515 An example of a special form is the definition of @code{or}, from
516 @file{eval.c}. (An ordinary function would have the same general
517 appearance.)
518
519 @cindex garbage collection protection
520 @smallexample
521 @group
522 DEFUN ("or", For, Sor, 0, UNEVALLED, 0,
523 doc: /* Eval args until one of them yields non-nil, then return that
524 value. The remaining args are not evalled at all.
525 If all args return nil, return nil.
526 @end group
527 @group
528 usage: (or CONDITIONS ...) */)
529 (Lisp_Object args)
530 @{
531 register Lisp_Object val = Qnil;
532 struct gcpro gcpro1;
533 @end group
534
535 @group
536 GCPRO1 (args);
537 @end group
538
539 @group
540 while (CONSP (args))
541 @{
542 val = Feval (XCAR (args));
543 if (!NILP (val))
544 break;
545 args = XCDR (args);
546 @}
547 @end group
548
549 @group
550 UNGCPRO;
551 return val;
552 @}
553 @end group
554 @end smallexample
555
556 @cindex @code{DEFUN}, C macro to define Lisp primitives
557 Let's start with a precise explanation of the arguments to the
558 @code{DEFUN} macro. Here is a template for them:
559
560 @example
561 DEFUN (@var{lname}, @var{fname}, @var{sname}, @var{min}, @var{max}, @var{interactive}, @var{doc})
562 @end example
563
564 @table @var
565 @item lname
566 This is the name of the Lisp symbol to define as the function name; in
567 the example above, it is @code{or}.
568
569 @item fname
570 This is the C function name for this function. This is
571 the name that is used in C code for calling the function. The name is,
572 by convention, @samp{F} prepended to the Lisp name, with all dashes
573 (@samp{-}) in the Lisp name changed to underscores. Thus, to call this
574 function from C code, call @code{For}. Remember that the arguments must
575 be of type @code{Lisp_Object}; various macros and functions for creating
576 values of type @code{Lisp_Object} are declared in the file
577 @file{lisp.h}.
578
579 @item sname
580 This is a C variable name to use for a structure that holds the data for
581 the subr object that represents the function in Lisp. This structure
582 conveys the Lisp symbol name to the initialization routine that will
583 create the symbol and store the subr object as its definition. By
584 convention, this name is always @var{fname} with @samp{F} replaced with
585 @samp{S}.
586
587 @item min
588 This is the minimum number of arguments that the function requires. The
589 function @code{or} allows a minimum of zero arguments.
590
591 @item max
592 This is the maximum number of arguments that the function accepts, if
593 there is a fixed maximum. Alternatively, it can be @code{UNEVALLED},
594 indicating a special form that receives unevaluated arguments, or
595 @code{MANY}, indicating an unlimited number of evaluated arguments (the
596 equivalent of @code{&rest}). Both @code{UNEVALLED} and @code{MANY} are
597 macros. If @var{max} is a number, it may not be less than @var{min} and
598 it may not be greater than eight.
599
600 @item interactive
601 This is an interactive specification, a string such as might be used as
602 the argument of @code{interactive} in a Lisp function. In the case of
603 @code{or}, it is 0 (a null pointer), indicating that @code{or} cannot be
604 called interactively. A value of @code{""} indicates a function that
605 should receive no arguments when called interactively. If the value
606 begins with a @samp{(}, the string is evaluated as a Lisp form.
607
608 @item doc
609 This is the documentation string. It uses C comment syntax rather
610 than C string syntax because comment syntax requires nothing special
611 to include multiple lines. The @samp{doc:} identifies the comment
612 that follows as the documentation string. The @samp{/*} and @samp{*/}
613 delimiters that begin and end the comment are not part of the
614 documentation string.
615
616 If the last line of the documentation string begins with the keyword
617 @samp{usage:}, the rest of the line is treated as the argument list
618 for documentation purposes. This way, you can use different argument
619 names in the documentation string from the ones used in the C code.
620 @samp{usage:} is required if the function has an unlimited number of
621 arguments.
622
623 All the usual rules for documentation strings in Lisp code
624 (@pxref{Documentation Tips}) apply to C code documentation strings
625 too.
626 @end table
627
628 After the call to the @code{DEFUN} macro, you must write the
629 argument list that every C function must have, including the types for
630 the arguments. For a function with a fixed maximum number of
631 arguments, declare a C argument for each Lisp argument, and give them
632 all type @code{Lisp_Object}. When a Lisp function has no upper limit
633 on the number of arguments, its implementation in C actually receives
634 exactly two arguments: the first is the number of Lisp arguments, and
635 the second is the address of a block containing their values. They
636 have types @code{int} and @w{@code{Lisp_Object *}}.
637
638 @cindex @code{GCPRO} and @code{UNGCPRO}
639 @cindex protect C variables from garbage collection
640 Within the function @code{For} itself, note the use of the macros
641 @code{GCPRO1} and @code{UNGCPRO}. @code{GCPRO1} is used to
642 ``protect'' a variable from garbage collection---to inform the garbage
643 collector that it must look in that variable and regard its contents
644 as an accessible object. GC protection is necessary whenever you call
645 @code{Feval} or anything that can directly or indirectly call
646 @code{Feval}. At such a time, any Lisp object that this function may
647 refer to again must be protected somehow.
648
649 It suffices to ensure that at least one pointer to each object is
650 GC-protected; that way, the object cannot be recycled, so all pointers
651 to it remain valid. Thus, a particular local variable can do without
652 protection if it is certain that the object it points to will be
653 preserved by some other pointer (such as another local variable which
654 has a @code{GCPRO})@footnote{Formerly, strings were a special
655 exception; in older Emacs versions, every local variable that might
656 point to a string needed a @code{GCPRO}.}. Otherwise, the local
657 variable needs a @code{GCPRO}.
658
659 The macro @code{GCPRO1} protects just one local variable. If you
660 want to protect two variables, use @code{GCPRO2} instead; repeating
661 @code{GCPRO1} will not work. Macros @code{GCPRO3}, @code{GCPRO4},
662 @code{GCPRO5}, and @code{GCPRO6} also exist. All these macros
663 implicitly use local variables such as @code{gcpro1}; you must declare
664 these explicitly, with type @code{struct gcpro}. Thus, if you use
665 @code{GCPRO2}, you must declare @code{gcpro1} and @code{gcpro2}.
666 Alas, we can't explain all the tricky details here.
667
668 @code{UNGCPRO} cancels the protection of the variables that are
669 protected in the current function. It is necessary to do this
670 explicitly.
671
672 Built-in functions that take a variable number of arguments actually
673 accept two arguments at the C level: the number of Lisp arguments, and
674 a @code{Lisp_Object *} pointer to a C vector containing those Lisp
675 arguments. This C vector may be part of a Lisp vector, but it need
676 not be. The responsibility for using @code{GCPRO} to protect the Lisp
677 arguments from GC if necessary rests with the caller in this case,
678 since the caller allocated or found the storage for them.
679
680 You must not use C initializers for static or global variables unless
681 the variables are never written once Emacs is dumped. These variables
682 with initializers are allocated in an area of memory that becomes
683 read-only (on certain operating systems) as a result of dumping Emacs.
684 @xref{Pure Storage}.
685
686 Do not use static variables within functions---place all static
687 variables at top level in the file. This is necessary because Emacs on
688 some operating systems defines the keyword @code{static} as a null
689 macro. (This definition is used because those systems put all variables
690 declared static in a place that becomes read-only after dumping, whether
691 they have initializers or not.)
692
693 @cindex @code{defsubr}, Lisp symbol for a primitive
694 Defining the C function is not enough to make a Lisp primitive
695 available; you must also create the Lisp symbol for the primitive and
696 store a suitable subr object in its function cell. The code looks like
697 this:
698
699 @example
700 defsubr (&@var{subr-structure-name});
701 @end example
702
703 @noindent
704 Here @var{subr-structure-name} is the name you used as the third
705 argument to @code{DEFUN}.
706
707 If you add a new primitive to a file that already has Lisp primitives
708 defined in it, find the function (near the end of the file) named
709 @code{syms_of_@var{something}}, and add the call to @code{defsubr}
710 there. If the file doesn't have this function, or if you create a new
711 file, add to it a @code{syms_of_@var{filename}} (e.g.,
712 @code{syms_of_myfile}). Then find the spot in @file{emacs.c} where all
713 of these functions are called, and add a call to
714 @code{syms_of_@var{filename}} there.
715
716 @anchor{Defining Lisp variables in C}
717 @vindex byte-boolean-vars
718 @cindex defining Lisp variables in C
719 @cindex @code{DEFVAR_INT}, @code{DEFVAR_LISP}, @code{DEFVAR_BOOL}
720 The function @code{syms_of_@var{filename}} is also the place to define
721 any C variables that are to be visible as Lisp variables.
722 @code{DEFVAR_LISP} makes a C variable of type @code{Lisp_Object} visible
723 in Lisp. @code{DEFVAR_INT} makes a C variable of type @code{int}
724 visible in Lisp with a value that is always an integer.
725 @code{DEFVAR_BOOL} makes a C variable of type @code{int} visible in Lisp
726 with a value that is either @code{t} or @code{nil}. Note that variables
727 defined with @code{DEFVAR_BOOL} are automatically added to the list
728 @code{byte-boolean-vars} used by the byte compiler.
729
730 @cindex @code{staticpro}, protection from GC
731 If you define a file-scope C variable of type @code{Lisp_Object},
732 you must protect it from garbage-collection by calling @code{staticpro}
733 in @code{syms_of_@var{filename}}, like this:
734
735 @example
736 staticpro (&@var{variable});
737 @end example
738
739 Here is another example function, with more complicated arguments.
740 This comes from the code in @file{window.c}, and it demonstrates the use
741 of macros and functions to manipulate Lisp objects.
742
743 @smallexample
744 @group
745 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
746 Scoordinates_in_window_p, 2, 2,
747 "xSpecify coordinate pair: \nXExpression which evals to window: ",
748 "Return non-nil if COORDINATES is in WINDOW.\n\
749 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
750 ...
751 @end group
752 @group
753 If they are on the border between WINDOW and its right sibling,\n\
754 `vertical-line' is returned.")
755 (coordinates, window)
756 register Lisp_Object coordinates, window;
757 @{
758 int x, y;
759 @end group
760
761 @group
762 CHECK_LIVE_WINDOW (window, 0);
763 CHECK_CONS (coordinates, 1);
764 x = XINT (Fcar (coordinates));
765 y = XINT (Fcdr (coordinates));
766 @end group
767
768 @group
769 switch (coordinates_in_window (XWINDOW (window), &x, &y))
770 @{
771 case 0: /* NOT in window at all. */
772 return Qnil;
773 @end group
774
775 @group
776 case 1: /* In text part of window. */
777 return Fcons (make_number (x), make_number (y));
778 @end group
779
780 @group
781 case 2: /* In mode line of window. */
782 return Qmode_line;
783 @end group
784
785 @group
786 case 3: /* On right border of window. */
787 return Qvertical_line;
788 @end group
789
790 @group
791 default:
792 abort ();
793 @}
794 @}
795 @end group
796 @end smallexample
797
798 Note that C code cannot call functions by name unless they are defined
799 in C. The way to call a function written in Lisp is to use
800 @code{Ffuncall}, which embodies the Lisp function @code{funcall}. Since
801 the Lisp function @code{funcall} accepts an unlimited number of
802 arguments, in C it takes two: the number of Lisp-level arguments, and a
803 one-dimensional array containing their values. The first Lisp-level
804 argument is the Lisp function to call, and the rest are the arguments to
805 pass to it. Since @code{Ffuncall} can call the evaluator, you must
806 protect pointers from garbage collection around the call to
807 @code{Ffuncall}.
808
809 The C functions @code{call0}, @code{call1}, @code{call2}, and so on,
810 provide handy ways to call a Lisp function conveniently with a fixed
811 number of arguments. They work by calling @code{Ffuncall}.
812
813 @file{eval.c} is a very good file to look through for examples;
814 @file{lisp.h} contains the definitions for some important macros and
815 functions.
816
817 If you define a function which is side-effect free, update the code
818 in @file{byte-opt.el} which binds @code{side-effect-free-fns} and
819 @code{side-effect-and-error-free-fns} so that the compiler optimizer
820 knows about it.
821
822 @node Object Internals
823 @section Object Internals
824 @cindex object internals
825
826 GNU Emacs Lisp manipulates many different types of data. The actual
827 data are stored in a heap and the only access that programs have to it
828 is through pointers. Each pointer is 32 bits wide on 32-bit machines,
829 and 64 bits wide on 64-bit machines; three of these bits are used for
830 the tag that identifies the object's type, and the remainder are used
831 to address the object.
832
833 Because Lisp objects are represented as tagged pointers, it is always
834 possible to determine the Lisp data type of any object. The C data type
835 @code{Lisp_Object} can hold any Lisp object of any data type. Ordinary
836 variables have type @code{Lisp_Object}, which means they can hold any
837 type of Lisp value; you can determine the actual data type only at run
838 time. The same is true for function arguments; if you want a function
839 to accept only a certain type of argument, you must check the type
840 explicitly using a suitable predicate (@pxref{Type Predicates}).
841 @cindex type checking internals
842
843 @menu
844 * Buffer Internals:: Components of a buffer structure.
845 * Window Internals:: Components of a window structure.
846 * Process Internals:: Components of a process structure.
847 @end menu
848
849 @node Buffer Internals
850 @subsection Buffer Internals
851 @cindex internals, of buffer
852 @cindex buffer internals
853
854 Two structures are used to represent buffers in C. The
855 @code{buffer_text} structure contains fields describing the text of a
856 buffer; the @code{buffer} structure holds other fields. In the case
857 of indirect buffers, two or more @code{buffer} structures reference
858 the same @code{buffer_text} structure.
859
860 Here are some of the fields in @code{struct buffer_text}:
861
862 @table @code
863 @item beg
864 The address of the buffer contents.
865
866 @item gpt
867 @itemx gpt_byte
868 The character and byte positions of the buffer gap. @xref{Buffer
869 Gap}.
870
871 @item z
872 @itemx z_byte
873 The character and byte positions of the end of the buffer text.
874
875 @item gap_size
876 The size of buffer's gap. @xref{Buffer Gap}.
877
878 @item modiff
879 @itemx save_modiff
880 @itemx chars_modiff
881 @itemx overlay_modiff
882 These fields count the number of buffer-modification events performed
883 in this buffer. @code{modiff} is incremented after each
884 buffer-modification event, and is never otherwise changed;
885 @code{save_modiff} contains the value of @code{modiff} the last time
886 the buffer was visited or saved; @code{chars_modiff} counts only
887 modifications to the characters in the buffer, ignoring all other
888 kinds of changes; and @code{overlay_modiff} counts only modifications
889 to the overlays.
890
891 @item beg_unchanged
892 @itemx end_unchanged
893 The number of characters at the start and end of the text that are
894 known to be unchanged since the last complete redisplay.
895
896 @item unchanged_modified
897 @itemx overlay_unchanged_modified
898 The values of @code{modiff} and @code{overlay_modiff}, respectively,
899 after the last complete redisplay. If their current values match
900 @code{modiff} or @code{overlay_modiff}, that means
901 @code{beg_unchanged} and @code{end_unchanged} contain no useful
902 information.
903
904 @item markers
905 The markers that refer to this buffer. This is actually a single
906 marker, and successive elements in its marker @code{chain} are the other
907 markers referring to this buffer text.
908
909 @item intervals
910 The interval tree which records the text properties of this buffer.
911 @end table
912
913 Some of the fields of @code{struct buffer} are:
914
915 @table @code
916 @item next
917 Points to the next buffer, in the chain of all buffers (including
918 killed buffers). This chain is used only for garbage collection, in
919 order to collect killed buffers properly. Note that vectors, and most
920 kinds of objects allocated as vectors, are all on one chain, but
921 buffers are on a separate chain of their own.
922
923 @item own_text
924 A @code{struct buffer_text} structure that ordinarily holds the buffer
925 contents. In indirect buffers, this field is not used.
926
927 @item text
928 A pointer to the @code{buffer_text} structure for this buffer. In an
929 ordinary buffer, this is the @code{own_text} field above. In an
930 indirect buffer, this is the @code{own_text} field of the base buffer.
931
932 @item pt
933 @itemx pt_byte
934 The character and byte positions of point in a buffer.
935
936 @item begv
937 @itemx begv_byte
938 The character and byte positions of the beginning of the accessible
939 range of text in the buffer.
940
941 @item zv
942 @itemx zv_byte
943 The character and byte positions of the end of the accessible range of
944 text in the buffer.
945
946 @item base_buffer
947 In an indirect buffer, this points to the base buffer. In an ordinary
948 buffer, it is null.
949
950 @item local_flags
951 This field contains flags indicating that certain variables are local
952 in this buffer. Such variables are declared in the C code using
953 @code{DEFVAR_PER_BUFFER}, and their buffer-local bindings are stored
954 in fields in the buffer structure itself. (Some of these fields are
955 described in this table.)
956
957 @item modtime
958 The modification time of the visited file. It is set when the file is
959 written or read. Before writing the buffer into a file, this field is
960 compared to the modification time of the file to see if the file has
961 changed on disk. @xref{Buffer Modification}.
962
963 @item auto_save_modified
964 The time when the buffer was last auto-saved.
965
966 @item last_window_start
967 The @code{window-start} position in the buffer as of the last time the
968 buffer was displayed in a window.
969
970 @item clip_changed
971 This flag indicates that narrowing has changed in the buffer.
972 @xref{Narrowing}.
973
974 @item prevent_redisplay_optimizations_p
975 This flag indicates that redisplay optimizations should not be used to
976 display this buffer.
977
978 @item overlay_center
979 This field holds the current overlay center position. @xref{Managing
980 Overlays}.
981
982 @item overlays_before
983 @itemx overlays_after
984 These fields hold, respectively, a list of overlays that end at or
985 before the current overlay center, and a list of overlays that end
986 after the current overlay center. @xref{Managing Overlays}.
987 @code{overlays_before} is sorted in order of decreasing end position,
988 and @code{overlays_after} is sorted in order of increasing beginning
989 position.
990
991 @item name
992 A Lisp string that names the buffer. It is guaranteed to be unique.
993 @xref{Buffer Names}.
994
995 @item save_length
996 The length of the file this buffer is visiting, when last read or
997 saved. This and other fields concerned with saving are not kept in
998 the @code{buffer_text} structure because indirect buffers are never
999 saved.
1000
1001 @item directory
1002 The directory for expanding relative file names. This is the value of
1003 the buffer-local variable @code{default-directory} (@pxref{File Name Expansion}).
1004
1005 @item filename
1006 The name of the file visited in this buffer, or @code{nil}. This is
1007 the value of the buffer-local variable @code{buffer-file-name}
1008 (@pxref{Buffer File Name}).
1009
1010 @item undo_list
1011 @itemx backed_up
1012 @itemx auto_save_file_name
1013 @itemx read_only
1014 @itemx file_format
1015 @itemx file_truename
1016 @itemx invisibility_spec
1017 @itemx display_count
1018 @itemx display_time
1019 These fields store the values of Lisp variables that are automatically
1020 buffer-local (@pxref{Buffer-Local Variables}), whose corresponding
1021 variable names have the additional prefix @code{buffer-} and have
1022 underscores replaced with dashes. For instance, @code{undo_list}
1023 stores the value of @code{buffer-undo-list}.
1024
1025 @item mark
1026 The mark for the buffer. The mark is a marker, hence it is also
1027 included on the list @code{markers}. @xref{The Mark}.
1028
1029 @item local_var_alist
1030 The association list describing the buffer-local variable bindings of
1031 this buffer, not including the built-in buffer-local bindings that
1032 have special slots in the buffer object. (Those slots are omitted
1033 from this table.) @xref{Buffer-Local Variables}.
1034
1035 @item major_mode
1036 Symbol naming the major mode of this buffer, e.g., @code{lisp-mode}.
1037
1038 @item mode_name
1039 Pretty name of the major mode, e.g., @code{"Lisp"}.
1040
1041 @item keymap
1042 @itemx abbrev_table
1043 @itemx syntax_table
1044 @itemx category_table
1045 @itemx display_table
1046 These fields store the buffer's local keymap (@pxref{Keymaps}), abbrev
1047 table (@pxref{Abbrev Tables}), syntax table (@pxref{Syntax Tables}),
1048 category table (@pxref{Categories}), and display table (@pxref{Display
1049 Tables}).
1050
1051 @item downcase_table
1052 @itemx upcase_table
1053 @itemx case_canon_table
1054 These fields store the conversion tables for converting text to lower
1055 case, upper case, and for canonicalizing text for case-fold search.
1056 @xref{Case Tables}.
1057
1058 @item minor_modes
1059 An alist of the minor modes of this buffer.
1060
1061 @item pt_marker
1062 @itemx begv_marker
1063 @itemx zv_marker
1064 These fields are only used in an indirect buffer, or in a buffer that
1065 is the base of an indirect buffer. Each holds a marker that records
1066 @code{pt}, @code{begv}, and @code{zv} respectively, for this buffer
1067 when the buffer is not current.
1068
1069 @item mode_line_format
1070 @itemx header_line_format
1071 @itemx case_fold_search
1072 @itemx tab_width
1073 @itemx fill_column
1074 @itemx left_margin
1075 @itemx auto_fill_function
1076 @itemx truncate_lines
1077 @itemx word_wrap
1078 @itemx ctl_arrow
1079 @itemx selective_display
1080 @itemx selective_display_ellipses
1081 @itemx overwrite_mode
1082 @itemx abbrev_mode
1083 @itemx display_table
1084 @itemx mark_active
1085 @itemx enable_multibyte_characters
1086 @itemx buffer_file_coding_system
1087 @itemx auto_save_file_format
1088 @itemx cache_long_line_scans
1089 @itemx point_before_scroll
1090 @itemx left_fringe_width
1091 @itemx right_fringe_width
1092 @itemx fringes_outside_margins
1093 @itemx scroll_bar_width
1094 @itemx indicate_empty_lines
1095 @itemx indicate_buffer_boundaries
1096 @itemx fringe_indicator_alist
1097 @itemx fringe_cursor_alist
1098 @itemx scroll_up_aggressively
1099 @itemx scroll_down_aggressively
1100 @itemx cursor_type
1101 @itemx cursor_in_non_selected_windows
1102 These fields store the values of Lisp variables that are automatically
1103 buffer-local (@pxref{Buffer-Local Variables}), whose corresponding
1104 variable names have underscores replaced with dashes. For instance,
1105 @code{mode_line_format} stores the value of @code{mode-line-format}.
1106
1107 @item last_selected_window
1108 This is the last window that was selected with this buffer in it, or @code{nil}
1109 if that window no longer displays this buffer.
1110 @end table
1111
1112 @node Window Internals
1113 @subsection Window Internals
1114 @cindex internals, of window
1115 @cindex window internals
1116
1117 Windows have the following accessible fields:
1118
1119 @table @code
1120 @item frame
1121 The frame that this window is on.
1122
1123 @item mini_p
1124 Non-@code{nil} if this window is a minibuffer window.
1125
1126 @item parent
1127 Internally, Emacs arranges windows in a tree; each group of siblings has
1128 a parent window whose area includes all the siblings. This field points
1129 to a window's parent.
1130
1131 Parent windows do not display buffers, and play little role in display
1132 except to shape their child windows. Emacs Lisp programs usually have
1133 no access to the parent windows; they operate on the windows at the
1134 leaves of the tree, which actually display buffers.
1135
1136 @item hchild
1137 @itemx vchild
1138 These fields contain the window's leftmost child and its topmost child
1139 respectively. @code{hchild} is used if the window is subdivided
1140 horizontally by child windows, and @code{vchild} if it is subdivided
1141 vertically.
1142
1143 @item next
1144 @itemx prev
1145 The next sibling and previous sibling of this window. @code{next} is
1146 @code{nil} if the window is the right-most or bottom-most in its group;
1147 @code{prev} is @code{nil} if it is the left-most or top-most in its
1148 group.
1149
1150 @item left_col
1151 The left-hand edge of the window, measured in columns, relative to the
1152 leftmost column in the frame (column 0).
1153
1154 @item top_line
1155 The top edge of the window, measured in lines, relative to the topmost
1156 line in the frame (line 0).
1157
1158 @item total_cols
1159 @itemx total_lines
1160 The width and height of the window, measured in columns and lines
1161 respectively. The width includes the scroll bar and fringes, and/or
1162 the separator line on the right of the window (if any).
1163
1164 @item buffer
1165 The buffer that the window is displaying.
1166
1167 @item start
1168 A marker pointing to the position in the buffer that is the first
1169 character displayed in the window.
1170
1171 @item pointm
1172 @cindex window point internals
1173 This is the value of point in the current buffer when this window is
1174 selected; when it is not selected, it retains its previous value.
1175
1176 @item force_start
1177 If this flag is non-@code{nil}, it says that the window has been
1178 scrolled explicitly by the Lisp program. This affects what the next
1179 redisplay does if point is off the screen: instead of scrolling the
1180 window to show the text around point, it moves point to a location that
1181 is on the screen.
1182
1183 @item frozen_window_start_p
1184 This field is set temporarily to 1 to indicate to redisplay that
1185 @code{start} of this window should not be changed, even if point
1186 gets invisible.
1187
1188 @item start_at_line_beg
1189 Non-@code{nil} means current value of @code{start} was the beginning of a line
1190 when it was chosen.
1191
1192 @item use_time
1193 This is the last time that the window was selected. The function
1194 @code{get-lru-window} uses this field.
1195
1196 @item sequence_number
1197 A unique number assigned to this window when it was created.
1198
1199 @item last_modified
1200 The @code{modiff} field of the window's buffer, as of the last time
1201 a redisplay completed in this window.
1202
1203 @item last_overlay_modified
1204 The @code{overlay_modiff} field of the window's buffer, as of the last
1205 time a redisplay completed in this window.
1206
1207 @item last_point
1208 The buffer's value of point, as of the last time a redisplay completed
1209 in this window.
1210
1211 @item last_had_star
1212 A non-@code{nil} value means the window's buffer was ``modified'' when the
1213 window was last updated.
1214
1215 @item vertical_scroll_bar
1216 This window's vertical scroll bar.
1217
1218 @item left_margin_width
1219 @itemx right_margin_width
1220 The widths of the left and right margins in this window. A value of
1221 @code{nil} means to use the buffer's value of @code{left-margin-width}
1222 or @code{right-margin-width}.
1223
1224 @item window_end_pos
1225 This is computed as @code{z} minus the buffer position of the last glyph
1226 in the current matrix of the window. The value is only valid if
1227 @code{window_end_valid} is not @code{nil}.
1228
1229 @item window_end_bytepos
1230 The byte position corresponding to @code{window_end_pos}.
1231
1232 @item window_end_vpos
1233 The window-relative vertical position of the line containing
1234 @code{window_end_pos}.
1235
1236 @item window_end_valid
1237 This field is set to a non-@code{nil} value if @code{window_end_pos} is truly
1238 valid. This is @code{nil} if nontrivial redisplay is preempted since in that
1239 case the display that @code{window_end_pos} was computed for did not get
1240 onto the screen.
1241
1242 @item cursor
1243 A structure describing where the cursor is in this window.
1244
1245 @item last_cursor
1246 The value of @code{cursor} as of the last redisplay that finished.
1247
1248 @item phys_cursor
1249 A structure describing where the cursor of this window physically is.
1250
1251 @item phys_cursor_type
1252 The type of cursor that was last displayed on this window.
1253
1254 @item phys_cursor_on_p
1255 This field is non-zero if the cursor is physically on.
1256
1257 @item cursor_off_p
1258 Non-zero means the cursor in this window is logically on.
1259
1260 @item last_cursor_off_p
1261 This field contains the value of @code{cursor_off_p} as of the time of
1262 the last redisplay.
1263
1264 @item must_be_updated_p
1265 This is set to 1 during redisplay when this window must be updated.
1266
1267 @item hscroll
1268 This is the number of columns that the display in the window is scrolled
1269 horizontally to the left. Normally, this is 0.
1270
1271 @item vscroll
1272 Vertical scroll amount, in pixels. Normally, this is 0.
1273
1274 @item dedicated
1275 Non-@code{nil} if this window is dedicated to its buffer.
1276
1277 @item display_table
1278 The window's display table, or @code{nil} if none is specified for it.
1279
1280 @item update_mode_line
1281 Non-@code{nil} means this window's mode line needs to be updated.
1282
1283 @item base_line_number
1284 The line number of a certain position in the buffer, or @code{nil}.
1285 This is used for displaying the line number of point in the mode line.
1286
1287 @item base_line_pos
1288 The position in the buffer for which the line number is known, or
1289 @code{nil} meaning none is known.
1290
1291 @item region_showing
1292 If the region (or part of it) is highlighted in this window, this field
1293 holds the mark position that made one end of that region. Otherwise,
1294 this field is @code{nil}.
1295
1296 @item column_number_displayed
1297 The column number currently displayed in this window's mode line, or @code{nil}
1298 if column numbers are not being displayed.
1299
1300 @item current_matrix
1301 A glyph matrix describing the current display of this window.
1302
1303 @item desired_matrix
1304 A glyph matrix describing the desired display of this window.
1305 @end table
1306
1307 @node Process Internals
1308 @subsection Process Internals
1309 @cindex internals, of process
1310 @cindex process internals
1311
1312 The fields of a process are:
1313
1314 @table @code
1315 @item name
1316 A string, the name of the process.
1317
1318 @item command
1319 A list containing the command arguments that were used to start this
1320 process. For a network or serial process, it is @code{nil} if the
1321 process is running or @code{t} if the process is stopped.
1322
1323 @item filter
1324 A function used to accept output from the process instead of a buffer,
1325 or @code{nil}.
1326
1327 @item sentinel
1328 A function called whenever the process receives a signal, or @code{nil}.
1329
1330 @item buffer
1331 The associated buffer of the process.
1332
1333 @item pid
1334 An integer, the operating system's process @acronym{ID}.
1335
1336 @item childp
1337 A flag, non-@code{nil} if this is really a child process.
1338 It is @code{nil} for a network or serial connection.
1339
1340 @item mark
1341 A marker indicating the position of the end of the last output from this
1342 process inserted into the buffer. This is often but not always the end
1343 of the buffer.
1344
1345 @item kill_without_query
1346 If this is non-zero, killing Emacs while this process is still running
1347 does not ask for confirmation about killing the process.
1348
1349 @item raw_status_low
1350 @itemx raw_status_high
1351 These two fields record 16 bits each of the process status returned by
1352 the @code{wait} system call.
1353
1354 @item status
1355 The process status, as @code{process-status} should return it.
1356
1357 @item tick
1358 @itemx update_tick
1359 If these two fields are not equal, a change in the status of the process
1360 needs to be reported, either by running the sentinel or by inserting a
1361 message in the process buffer.
1362
1363 @item pty_flag
1364 Non-@code{nil} if communication with the subprocess uses a @acronym{PTY};
1365 @code{nil} if it uses a pipe.
1366
1367 @item infd
1368 The file descriptor for input from the process.
1369
1370 @item outfd
1371 The file descriptor for output to the process.
1372
1373 @item subtty
1374 The file descriptor for the terminal that the subprocess is using. (On
1375 some systems, there is no need to record this, so the value is
1376 @code{nil}.)
1377
1378 @item tty_name
1379 The name of the terminal that the subprocess is using,
1380 or @code{nil} if it is using pipes.
1381
1382 @item decode_coding_system
1383 Coding-system for decoding the input from this process.
1384
1385 @item decoding_buf
1386 A working buffer for decoding.
1387
1388 @item decoding_carryover
1389 Size of carryover in decoding.
1390
1391 @item encode_coding_system
1392 Coding-system for encoding the output to this process.
1393
1394 @item encoding_buf
1395 A working buffer for encoding.
1396
1397 @item encoding_carryover
1398 Size of carryover in encoding.
1399
1400 @item inherit_coding_system_flag
1401 Flag to set @code{coding-system} of the process buffer from the
1402 coding system used to decode process output.
1403
1404 @item type
1405 Symbol indicating the type of process: @code{real}, @code{network},
1406 @code{serial}
1407
1408 @end table