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