(comint-quote-filename): Correctly handle backslash
[emacs.git] / lispref / objects.texi
blob4c905cb969e2fadcd31ce981c9abefd2a0e14f76
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2003
4 @c   Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/objects
7 @node Lisp Data Types, Numbers, Introduction, Top
8 @chapter Lisp Data Types
9 @cindex object
10 @cindex Lisp object
11 @cindex type
12 @cindex data type
14   A Lisp @dfn{object} is a piece of data used and manipulated by Lisp
15 programs.  For our purposes, a @dfn{type} or @dfn{data type} is a set of
16 possible objects.
18   Every object belongs to at least one type.  Objects of the same type
19 have similar structures and may usually be used in the same contexts.
20 Types can overlap, and objects can belong to two or more types.
21 Consequently, we can ask whether an object belongs to a particular type,
22 but not for ``the'' type of an object.
24 @cindex primitive type
25   A few fundamental object types are built into Emacs.  These, from
26 which all other types are constructed, are called @dfn{primitive types}.
27 Each object belongs to one and only one primitive type.  These types
28 include @dfn{integer}, @dfn{float}, @dfn{cons}, @dfn{symbol},
29 @dfn{string}, @dfn{vector}, @dfn{hash-table}, @dfn{subr}, and
30 @dfn{byte-code function}, plus several special types, such as
31 @dfn{buffer}, that are related to editing.  (@xref{Editing Types}.)
33   Each primitive type has a corresponding Lisp function that checks
34 whether an object is a member of that type.
36   Note that Lisp is unlike many other languages in that Lisp objects are
37 @dfn{self-typing}: the primitive type of the object is implicit in the
38 object itself.  For example, if an object is a vector, nothing can treat
39 it as a number; Lisp knows it is a vector, not a number.
41   In most languages, the programmer must declare the data type of each
42 variable, and the type is known by the compiler but not represented in
43 the data.  Such type declarations do not exist in Emacs Lisp.  A Lisp
44 variable can have any type of value, and it remembers whatever value
45 you store in it, type and all.
47   This chapter describes the purpose, printed representation, and read
48 syntax of each of the standard types in GNU Emacs Lisp.  Details on how
49 to use these types can be found in later chapters.
51 @menu
52 * Printed Representation::      How Lisp objects are represented as text.
53 * Comments::                    Comments and their formatting conventions.
54 * Programming Types::           Types found in all Lisp systems.
55 * Editing Types::               Types specific to Emacs.
56 * Circular Objects::            Read syntax for circular structure.
57 * Type Predicates::             Tests related to types.
58 * Equality Predicates::         Tests of equality between any two objects.
59 @end menu
61 @node Printed Representation
62 @comment  node-name,  next,  previous,  up
63 @section Printed Representation and Read Syntax
64 @cindex printed representation
65 @cindex read syntax
67   The @dfn{printed representation} of an object is the format of the
68 output generated by the Lisp printer (the function @code{prin1}) for
69 that object.  The @dfn{read syntax} of an object is the format of the
70 input accepted by the Lisp reader (the function @code{read}) for that
71 object.  @xref{Read and Print}.
73   Most objects have more than one possible read syntax.  Some types of
74 object have no read syntax, since it may not make sense to enter objects
75 of these types directly in a Lisp program.  Except for these cases, the
76 printed representation of an object is also a read syntax for it.
78   In other languages, an expression is text; it has no other form.  In
79 Lisp, an expression is primarily a Lisp object and only secondarily the
80 text that is the object's read syntax.  Often there is no need to
81 emphasize this distinction, but you must keep it in the back of your
82 mind, or you will occasionally be very confused.
84 @cindex hash notation
85   Every type has a printed representation.  Some types have no read
86 syntax---for example, the buffer type has none.  Objects of these types
87 are printed in @dfn{hash notation}: the characters @samp{#<} followed by
88 a descriptive string (typically the type name followed by the name of
89 the object), and closed with a matching @samp{>}.  Hash notation cannot
90 be read at all, so the Lisp reader signals the error
91 @code{invalid-read-syntax} whenever it encounters @samp{#<}.
92 @kindex invalid-read-syntax
94 @example
95 (current-buffer)
96      @result{} #<buffer objects.texi>
97 @end example
99   When you evaluate an expression interactively, the Lisp interpreter
100 first reads the textual representation of it, producing a Lisp object,
101 and then evaluates that object (@pxref{Evaluation}).  However,
102 evaluation and reading are separate activities.  Reading returns the
103 Lisp object represented by the text that is read; the object may or may
104 not be evaluated later.  @xref{Input Functions}, for a description of
105 @code{read}, the basic function for reading objects.
107 @node Comments
108 @comment  node-name,  next,  previous,  up
109 @section Comments
110 @cindex comments
111 @cindex @samp{;} in comment
113   A @dfn{comment} is text that is written in a program only for the sake
114 of humans that read the program, and that has no effect on the meaning
115 of the program.  In Lisp, a semicolon (@samp{;}) starts a comment if it
116 is not within a string or character constant.  The comment continues to
117 the end of line.  The Lisp reader discards comments; they do not become
118 part of the Lisp objects which represent the program within the Lisp
119 system.
121   The @samp{#@@@var{count}} construct, which skips the next @var{count}
122 characters, is useful for program-generated comments containing binary
123 data.  The Emacs Lisp byte compiler uses this in its output files
124 (@pxref{Byte Compilation}).  It isn't meant for source files, however.
126   @xref{Comment Tips}, for conventions for formatting comments.
128 @node Programming Types
129 @section Programming Types
130 @cindex programming types
132   There are two general categories of types in Emacs Lisp: those having
133 to do with Lisp programming, and those having to do with editing.  The
134 former exist in many Lisp implementations, in one form or another.  The
135 latter are unique to Emacs Lisp.
137 @menu
138 * Integer Type::        Numbers without fractional parts.
139 * Floating Point Type:: Numbers with fractional parts and with a large range.
140 * Character Type::      The representation of letters, numbers and
141                         control characters.
142 * Symbol Type::         A multi-use object that refers to a function,
143                         variable, or property list, and has a unique identity.
144 * Sequence Type::       Both lists and arrays are classified as sequences.
145 * Cons Cell Type::      Cons cells, and lists (which are made from cons cells).
146 * Array Type::          Arrays include strings and vectors.
147 * String Type::         An (efficient) array of characters.
148 * Vector Type::         One-dimensional arrays.
149 * Char-Table Type::     One-dimensional sparse arrays indexed by characters.
150 * Bool-Vector Type::    One-dimensional arrays of @code{t} or @code{nil}.
151 * Hash Table Type::     Super-fast lookup tables.
152 * Function Type::       A piece of executable code you can call from elsewhere.
153 * Macro Type::          A method of expanding an expression into another
154                           expression, more fundamental but less pretty.
155 * Primitive Function Type::     A function written in C, callable from Lisp.
156 * Byte-Code Type::      A function written in Lisp, then compiled.
157 * Autoload Type::       A type used for automatically loading seldom-used
158                         functions.
159 @end menu
161 @node Integer Type
162 @subsection Integer Type
164   The range of values for integers in Emacs Lisp is @minus{}268435456 to
165 268435455 (29 bits; i.e.,
166 @ifnottex
167 -2**28
168 @end ifnottex
169 @tex
170 @math{-2^{28}}
171 @end tex
173 @ifnottex
174 2**28 - 1)
175 @end ifnottex
176 @tex
177 @math{2^{28}-1})
178 @end tex
179 on most machines.  (Some machines may provide a wider range.)  It is
180 important to note that the Emacs Lisp arithmetic functions do not check
181 for overflow.  Thus @code{(1+ 268435455)} is @minus{}268435456 on most
182 machines.
184   The read syntax for integers is a sequence of (base ten) digits with an
185 optional sign at the beginning and an optional period at the end.  The
186 printed representation produced by the Lisp interpreter never has a
187 leading @samp{+} or a final @samp{.}.
189 @example
190 @group
191 -1               ; @r{The integer -1.}
192 1                ; @r{The integer 1.}
193 1.               ; @r{Also the integer 1.}
194 +1               ; @r{Also the integer 1.}
195 536870913        ; @r{Also the integer 1 on a 29-bit implementation.}
196 @end group
197 @end example
199   @xref{Numbers}, for more information.
201 @node Floating Point Type
202 @subsection Floating Point Type
204   Floating point numbers are the computer equivalent of scientific
205 notation.  The precise number of significant figures and the range of
206 possible exponents is machine-specific; Emacs always uses the C data
207 type @code{double} to store the value.
209   The printed representation for floating point numbers requires either
210 a decimal point (with at least one digit following), an exponent, or
211 both.  For example, @samp{1500.0}, @samp{15e2}, @samp{15.0e2},
212 @samp{1.5e3}, and @samp{.15e4} are five ways of writing a floating point
213 number whose value is 1500.  They are all equivalent.
215   @xref{Numbers}, for more information.
217 @node Character Type
218 @subsection Character Type
219 @cindex @acronym{ASCII} character codes
221   A @dfn{character} in Emacs Lisp is nothing more than an integer.  In
222 other words, characters are represented by their character codes.  For
223 example, the character @kbd{A} is represented as the @w{integer 65}.
225   Individual characters are not often used in programs.  It is far more
226 common to work with @emph{strings}, which are sequences composed of
227 characters.  @xref{String Type}.
229   Characters in strings, buffers, and files are currently limited to
230 the range of 0 to 524287---nineteen bits.  But not all values in that
231 range are valid character codes.  Codes 0 through 127 are
232 @acronym{ASCII} codes; the rest are non-@acronym{ASCII}
233 (@pxref{Non-ASCII Characters}).  Characters that represent keyboard
234 input have a much wider range, to encode modifier keys such as
235 Control, Meta and Shift.
237 @cindex read syntax for characters
238 @cindex printed representation for characters
239 @cindex syntax for characters
240 @cindex @samp{?} in character constant
241 @cindex question mark in character constant
242   Since characters are really integers, the printed representation of a
243 character is a decimal number.  This is also a possible read syntax for
244 a character, but writing characters that way in Lisp programs is a very
245 bad idea.  You should @emph{always} use the special read syntax formats
246 that Emacs Lisp provides for characters.  These syntax formats start
247 with a question mark.
249   The usual read syntax for alphanumeric characters is a question mark
250 followed by the character; thus, @samp{?A} for the character
251 @kbd{A}, @samp{?B} for the character @kbd{B}, and @samp{?a} for the
252 character @kbd{a}.
254   For example:
256 @example
257 ?Q @result{} 81     ?q @result{} 113
258 @end example
260   You can use the same syntax for punctuation characters, but it is
261 often a good idea to add a @samp{\} so that the Emacs commands for
262 editing Lisp code don't get confused.  For example, @samp{?\(} is the
263 way to write the open-paren character.  If the character is @samp{\},
264 you @emph{must} use a second @samp{\} to quote it: @samp{?\\}.
266 @cindex whitespace
267 @cindex bell character
268 @cindex @samp{\a}
269 @cindex backspace
270 @cindex @samp{\b}
271 @cindex tab
272 @cindex @samp{\t}
273 @cindex vertical tab
274 @cindex @samp{\v}
275 @cindex formfeed
276 @cindex @samp{\f}
277 @cindex newline
278 @cindex @samp{\n}
279 @cindex return
280 @cindex @samp{\r}
281 @cindex escape
282 @cindex @samp{\e}
283 @cindex space
284 @cindex @samp{\s}
285   You can express the characters control-g, backspace, tab, newline,
286 vertical tab, formfeed, space, return, del, and escape as @samp{?\a},
287 @samp{?\b}, @samp{?\t}, @samp{?\n}, @samp{?\v}, @samp{?\f},
288 @samp{?\s}, @samp{?\r}, @samp{?\d}, and @samp{?\e}, respectively.
289 Thus,
291 @example
292 ?\a @result{} 7                 ; @r{control-g, @kbd{C-g}}
293 ?\b @result{} 8                 ; @r{backspace, @key{BS}, @kbd{C-h}}
294 ?\t @result{} 9                 ; @r{tab, @key{TAB}, @kbd{C-i}}
295 ?\n @result{} 10                ; @r{newline, @kbd{C-j}}
296 ?\v @result{} 11                ; @r{vertical tab, @kbd{C-k}}
297 ?\f @result{} 12                ; @r{formfeed character, @kbd{C-l}}
298 ?\r @result{} 13                ; @r{carriage return, @key{RET}, @kbd{C-m}}
299 ?\e @result{} 27                ; @r{escape character, @key{ESC}, @kbd{C-[}}
300 ?\s @result{} 32                ; @r{space character, @key{SPC}}
301 ?\\ @result{} 92                ; @r{backslash character, @kbd{\}}
302 ?\d @result{} 127               ; @r{delete character, @key{DEL}}
303 @end example
305 @cindex escape sequence
306   These sequences which start with backslash are also known as
307 @dfn{escape sequences}, because backslash plays the role of an
308 ``escape character''; this terminology has nothing to do with the
309 character @key{ESC}.  @samp{\s} is meant for use only in character
310 constants; in string constants, just write the space.
312 @cindex control characters
313   Control characters may be represented using yet another read syntax.
314 This consists of a question mark followed by a backslash, caret, and the
315 corresponding non-control character, in either upper or lower case.  For
316 example, both @samp{?\^I} and @samp{?\^i} are valid read syntax for the
317 character @kbd{C-i}, the character whose value is 9.
319   Instead of the @samp{^}, you can use @samp{C-}; thus, @samp{?\C-i} is
320 equivalent to @samp{?\^I} and to @samp{?\^i}:
322 @example
323 ?\^I @result{} 9     ?\C-I @result{} 9
324 @end example
326   In strings and buffers, the only control characters allowed are those
327 that exist in @acronym{ASCII}; but for keyboard input purposes, you can turn
328 any character into a control character with @samp{C-}.  The character
329 codes for these non-@acronym{ASCII} control characters include the
330 @tex
331 @math{2^{26}}
332 @end tex
333 @ifnottex
334 2**26
335 @end ifnottex
336 bit as well as the code for the corresponding non-control
337 character.  Ordinary terminals have no way of generating non-@acronym{ASCII}
338 control characters, but you can generate them straightforwardly using X
339 and other window systems.
341   For historical reasons, Emacs treats the @key{DEL} character as
342 the control equivalent of @kbd{?}:
344 @example
345 ?\^? @result{} 127     ?\C-? @result{} 127
346 @end example
348 @noindent
349 As a result, it is currently not possible to represent the character
350 @kbd{Control-?}, which is a meaningful input character under X, using
351 @samp{\C-}.  It is not easy to change this, as various Lisp files refer
352 to @key{DEL} in this way.
354   For representing control characters to be found in files or strings,
355 we recommend the @samp{^} syntax; for control characters in keyboard
356 input, we prefer the @samp{C-} syntax.  Which one you use does not
357 affect the meaning of the program, but may guide the understanding of
358 people who read it.
360 @cindex meta characters
361   A @dfn{meta character} is a character typed with the @key{META}
362 modifier key.  The integer that represents such a character has the
363 @tex
364 @math{2^{27}}
365 @end tex
366 @ifnottex
367 2**27
368 @end ifnottex
369 bit set.  We use high bits for this and other modifiers to make
370 possible a wide range of basic character codes.
372   In a string, the
373 @tex
374 @math{2^{7}}
375 @end tex
376 @ifnottex
377 2**7
378 @end ifnottex
379 bit attached to an @acronym{ASCII} character indicates a meta
380 character; thus, the meta characters that can fit in a string have
381 codes in the range from 128 to 255, and are the meta versions of the
382 ordinary @acronym{ASCII} characters.  (In Emacs versions 18 and older,
383 this convention was used for characters outside of strings as well.)
385   The read syntax for meta characters uses @samp{\M-}.  For example,
386 @samp{?\M-A} stands for @kbd{M-A}.  You can use @samp{\M-} together with
387 octal character codes (see below), with @samp{\C-}, or with any other
388 syntax for a character.  Thus, you can write @kbd{M-A} as @samp{?\M-A},
389 or as @samp{?\M-\101}.  Likewise, you can write @kbd{C-M-b} as
390 @samp{?\M-\C-b}, @samp{?\C-\M-b}, or @samp{?\M-\002}.
392   The case of a graphic character is indicated by its character code;
393 for example, @acronym{ASCII} distinguishes between the characters @samp{a}
394 and @samp{A}.  But @acronym{ASCII} has no way to represent whether a control
395 character is upper case or lower case.  Emacs uses the
396 @tex
397 @math{2^{25}}
398 @end tex
399 @ifnottex
400 2**25
401 @end ifnottex
402 bit to indicate that the shift key was used in typing a control
403 character.  This distinction is possible only when you use X terminals
404 or other special terminals; ordinary terminals do not report the
405 distinction to the computer in any way.  The Lisp syntax for
406 the shift bit is @samp{\S-}; thus, @samp{?\C-\S-o} or @samp{?\C-\S-O}
407 represents the shifted-control-o character.
409 @cindex hyper characters
410 @cindex super characters
411 @cindex alt characters
412   The X Window System defines three other @anchor{modifier bits}
413 modifier bits that can be set
414 in a character: @dfn{hyper}, @dfn{super} and @dfn{alt}.  The syntaxes
415 for these bits are @samp{\H-}, @samp{\s-} and @samp{\A-}.  (Case is
416 significant in these prefixes.)  Thus, @samp{?\H-\M-\A-x} represents
417 @kbd{Alt-Hyper-Meta-x}.  (Note that @samp{\s} with no following @samp{-}
418 represents the space character.)
419 @tex
420 Numerically, the bit values are @math{2^{22}} for alt, @math{2^{23}}
421 for super and @math{2^{24}} for hyper.
422 @end tex
423 @ifnottex
424 Numerically, the
425 bit values are 2**22 for alt, 2**23 for super and 2**24 for hyper.
426 @end ifnottex
428 @cindex @samp{\} in character constant
429 @cindex backslash in character constant
430 @cindex octal character code
431   Finally, the most general read syntax for a character represents the
432 character code in either octal or hex.  To use octal, write a question
433 mark followed by a backslash and the octal character code (up to three
434 octal digits); thus, @samp{?\101} for the character @kbd{A},
435 @samp{?\001} for the character @kbd{C-a}, and @code{?\002} for the
436 character @kbd{C-b}.  Although this syntax can represent any @acronym{ASCII}
437 character, it is preferred only when the precise octal value is more
438 important than the @acronym{ASCII} representation.
440 @example
441 @group
442 ?\012 @result{} 10         ?\n @result{} 10         ?\C-j @result{} 10
443 ?\101 @result{} 65         ?A @result{} 65
444 @end group
445 @end example
447   To use hex, write a question mark followed by a backslash, @samp{x},
448 and the hexadecimal character code.  You can use any number of hex
449 digits, so you can represent any character code in this way.
450 Thus, @samp{?\x41} for the character @kbd{A}, @samp{?\x1} for the
451 character @kbd{C-a}, and @code{?\x8e0} for the Latin-1 character
452 @iftex
453 @samp{@`a}.
454 @end iftex
455 @ifnottex
456 @samp{a} with grave accent.
457 @end ifnottex
459   A backslash is allowed, and harmless, preceding any character without
460 a special escape meaning; thus, @samp{?\+} is equivalent to @samp{?+}.
461 There is no reason to add a backslash before most characters.  However,
462 you should add a backslash before any of the characters
463 @samp{()\|;'`"#.,} to avoid confusing the Emacs commands for editing
464 Lisp code.  You can also add a backslash before whitespace characters such as
465 space, tab, newline and formfeed.  However, it is cleaner to use one of
466 the easily readable escape sequences, such as @samp{\t} or @samp{\s},
467 instead of an actual whitespace character such as a tab or a space.
468 (If you do write backslash followed by a space, you should write
469 an extra space after the character constant to separate it from the
470 following text.)
472 @node Symbol Type
473 @subsection Symbol Type
475   A @dfn{symbol} in GNU Emacs Lisp is an object with a name.  The symbol
476 name serves as the printed representation of the symbol.  In ordinary
477 use, the name is unique---no two symbols have the same name.
479   A symbol can serve as a variable, as a function name, or to hold a
480 property list.  Or it may serve only to be distinct from all other Lisp
481 objects, so that its presence in a data structure may be recognized
482 reliably.  In a given context, usually only one of these uses is
483 intended.  But you can use one symbol in all of these ways,
484 independently.
486   A symbol whose name starts with a colon (@samp{:}) is called a
487 @dfn{keyword symbol}.  These symbols automatically act as constants, and
488 are normally used only by comparing an unknown symbol with a few
489 specific alternatives.
491 @cindex @samp{\} in symbols
492 @cindex backslash in symbols
493   A symbol name can contain any characters whatever.  Most symbol names
494 are written with letters, digits, and the punctuation characters
495 @samp{-+=*/}.  Such names require no special punctuation; the characters
496 of the name suffice as long as the name does not look like a number.
497 (If it does, write a @samp{\} at the beginning of the name to force
498 interpretation as a symbol.)  The characters @samp{_~!@@$%^&:<>@{@}?} are
499 less often used but also require no special punctuation.  Any other
500 characters may be included in a symbol's name by escaping them with a
501 backslash.  In contrast to its use in strings, however, a backslash in
502 the name of a symbol simply quotes the single character that follows the
503 backslash.  For example, in a string, @samp{\t} represents a tab
504 character; in the name of a symbol, however, @samp{\t} merely quotes the
505 letter @samp{t}.  To have a symbol with a tab character in its name, you
506 must actually use a tab (preceded with a backslash).  But it's rare to
507 do such a thing.
509 @cindex CL note---case of letters
510 @quotation
511 @b{Common Lisp note:} In Common Lisp, lower case letters are always
512 ``folded'' to upper case, unless they are explicitly escaped.  In Emacs
513 Lisp, upper case and lower case letters are distinct.
514 @end quotation
516   Here are several examples of symbol names.  Note that the @samp{+} in
517 the fifth example is escaped to prevent it from being read as a number.
518 This is not necessary in the seventh example because the rest of the name
519 makes it invalid as a number.
521 @example
522 @group
523 foo                 ; @r{A symbol named @samp{foo}.}
524 FOO                 ; @r{A symbol named @samp{FOO}, different from @samp{foo}.}
525 char-to-string      ; @r{A symbol named @samp{char-to-string}.}
526 @end group
527 @group
528 1+                  ; @r{A symbol named @samp{1+}}
529                     ;   @r{(not @samp{+1}, which is an integer).}
530 @end group
531 @group
532 \+1                 ; @r{A symbol named @samp{+1}}
533                     ;   @r{(not a very readable name).}
534 @end group
535 @group
536 \(*\ 1\ 2\)         ; @r{A symbol named @samp{(* 1 2)} (a worse name).}
537 @c the @'s in this next line use up three characters, hence the
538 @c apparent misalignment of the comment.
539 +-*/_~!@@$%^&=:<>@{@}  ; @r{A symbol named @samp{+-*/_~!@@$%^&=:<>@{@}}.}
540                     ;   @r{These characters need not be escaped.}
541 @end group
542 @end example
544 @ifinfo
545 @c This uses ``colon'' instead of a literal `:' because Info cannot
546 @c cope with a `:' in a menu
547 @cindex @samp{#@var{colon}} read syntax
548 @end ifinfo
549 @ifnotinfo
550 @cindex @samp{#:} read syntax
551 @end ifnotinfo
552   Normally the Lisp reader interns all symbols (@pxref{Creating
553 Symbols}).  To prevent interning, you can write @samp{#:} before the
554 name of the symbol.
556 @node Sequence Type
557 @subsection Sequence Types
559   A @dfn{sequence} is a Lisp object that represents an ordered set of
560 elements.  There are two kinds of sequence in Emacs Lisp, lists and
561 arrays.  Thus, an object of type list or of type array is also
562 considered a sequence.
564   Arrays are further subdivided into strings, vectors, char-tables and
565 bool-vectors.  Vectors can hold elements of any type, but string
566 elements must be characters, and bool-vector elements must be @code{t}
567 or @code{nil}.  Char-tables are like vectors except that they are
568 indexed by any valid character code.  The characters in a string can
569 have text properties like characters in a buffer (@pxref{Text
570 Properties}), but vectors do not support text properties, even when
571 their elements happen to be characters.
573   Lists, strings and the other array types are different, but they have
574 important similarities.  For example, all have a length @var{l}, and all
575 have elements which can be indexed from zero to @var{l} minus one.
576 Several functions, called sequence functions, accept any kind of
577 sequence.  For example, the function @code{elt} can be used to extract
578 an element of a sequence, given its index.  @xref{Sequences Arrays
579 Vectors}.
581   It is generally impossible to read the same sequence twice, since
582 sequences are always created anew upon reading.  If you read the read
583 syntax for a sequence twice, you get two sequences with equal contents.
584 There is one exception: the empty list @code{()} always stands for the
585 same object, @code{nil}.
587 @node Cons Cell Type
588 @subsection Cons Cell and List Types
589 @cindex address field of register
590 @cindex decrement field of register
591 @cindex pointers
593   A @dfn{cons cell} is an object that consists of two slots, called the
594 @sc{car} slot and the @sc{cdr} slot.  Each slot can @dfn{hold} or
595 @dfn{refer to} any Lisp object.  We also say that ``the @sc{car} of
596 this cons cell is'' whatever object its @sc{car} slot currently holds,
597 and likewise for the @sc{cdr}.
599 @quotation
600 A note to C programmers: in Lisp, we do not distinguish between
601 ``holding'' a value and ``pointing to'' the value, because pointers in
602 Lisp are implicit.
603 @end quotation
605   A @dfn{list} is a series of cons cells, linked together so that the
606 @sc{cdr} slot of each cons cell holds either the next cons cell or the
607 empty list.  @xref{Lists}, for functions that work on lists.  Because
608 most cons cells are used as part of lists, the phrase @dfn{list
609 structure} has come to refer to any structure made out of cons cells.
611   The names @sc{car} and @sc{cdr} derive from the history of Lisp.  The
612 original Lisp implementation ran on an @w{IBM 704} computer which
613 divided words into two parts, called the ``address'' part and the
614 ``decrement''; @sc{car} was an instruction to extract the contents of
615 the address part of a register, and @sc{cdr} an instruction to extract
616 the contents of the decrement.  By contrast, ``cons cells'' are named
617 for the function @code{cons} that creates them, which in turn was named
618 for its purpose, the construction of cells.
620 @cindex atom
621   Because cons cells are so central to Lisp, we also have a word for
622 ``an object which is not a cons cell''.  These objects are called
623 @dfn{atoms}.
625 @cindex parenthesis
626   The read syntax and printed representation for lists are identical, and
627 consist of a left parenthesis, an arbitrary number of elements, and a
628 right parenthesis.
630    Upon reading, each object inside the parentheses becomes an element
631 of the list.  That is, a cons cell is made for each element.  The
632 @sc{car} slot of the cons cell holds the element, and its @sc{cdr}
633 slot refers to the next cons cell of the list, which holds the next
634 element in the list.  The @sc{cdr} slot of the last cons cell is set to
635 hold @code{nil}.
637 @cindex box diagrams, for lists
638 @cindex diagrams, boxed, for lists
639   A list can be illustrated by a diagram in which the cons cells are
640 shown as pairs of boxes, like dominoes.  (The Lisp reader cannot read
641 such an illustration; unlike the textual notation, which can be
642 understood by both humans and computers, the box illustrations can be
643 understood only by humans.)  This picture represents the three-element
644 list @code{(rose violet buttercup)}:
646 @example
647 @group
648     --- ---      --- ---      --- ---
649    |   |   |--> |   |   |--> |   |   |--> nil
650     --- ---      --- ---      --- ---
651      |            |            |
652      |            |            |
653       --> rose     --> violet   --> buttercup
654 @end group
655 @end example
657   In this diagram, each box represents a slot that can hold or refer to
658 any Lisp object.  Each pair of boxes represents a cons cell.  Each arrow
659 represents a reference to a Lisp object, either an atom or another cons
660 cell.
662   In this example, the first box, which holds the @sc{car} of the first
663 cons cell, refers to or ``holds'' @code{rose} (a symbol).  The second
664 box, holding the @sc{cdr} of the first cons cell, refers to the next
665 pair of boxes, the second cons cell.  The @sc{car} of the second cons
666 cell is @code{violet}, and its @sc{cdr} is the third cons cell.  The
667 @sc{cdr} of the third (and last) cons cell is @code{nil}.
669   Here is another diagram of the same list, @code{(rose violet
670 buttercup)}, sketched in a different manner:
672 @smallexample
673 @group
674  ---------------       ----------------       -------------------
675 | car   | cdr   |     | car    | cdr   |     | car       | cdr   |
676 | rose  |   o-------->| violet |   o-------->| buttercup |  nil  |
677 |       |       |     |        |       |     |           |       |
678  ---------------       ----------------       -------------------
679 @end group
680 @end smallexample
682 @cindex @samp{(@dots{})} in lists
683 @cindex @code{nil} in lists
684 @cindex empty list
685   A list with no elements in it is the @dfn{empty list}; it is identical
686 to the symbol @code{nil}.  In other words, @code{nil} is both a symbol
687 and a list.
689   Here are examples of lists written in Lisp syntax:
691 @example
692 (A 2 "A")            ; @r{A list of three elements.}
693 ()                   ; @r{A list of no elements (the empty list).}
694 nil                  ; @r{A list of no elements (the empty list).}
695 ("A ()")             ; @r{A list of one element: the string @code{"A ()"}.}
696 (A ())               ; @r{A list of two elements: @code{A} and the empty list.}
697 (A nil)              ; @r{Equivalent to the previous.}
698 ((A B C))            ; @r{A list of one element}
699                      ;   @r{(which is a list of three elements).}
700 @end example
702   Here is the list @code{(A ())}, or equivalently @code{(A nil)},
703 depicted with boxes and arrows:
705 @example
706 @group
707     --- ---      --- ---
708    |   |   |--> |   |   |--> nil
709     --- ---      --- ---
710      |            |
711      |            |
712       --> A        --> nil
713 @end group
714 @end example
716 @menu
717 * Dotted Pair Notation::        An alternative syntax for lists.
718 * Association List Type::       A specially constructed list.
719 @end menu
721 @node Dotted Pair Notation
722 @comment  node-name,  next,  previous,  up
723 @subsubsection Dotted Pair Notation
724 @cindex dotted pair notation
725 @cindex @samp{.} in lists
727   @dfn{Dotted pair notation} is an alternative syntax for cons cells
728 that represents the @sc{car} and @sc{cdr} explicitly.  In this syntax,
729 @code{(@var{a} .@: @var{b})} stands for a cons cell whose @sc{car} is
730 the object @var{a}, and whose @sc{cdr} is the object @var{b}.  Dotted
731 pair notation is therefore more general than list syntax.  In the dotted
732 pair notation, the list @samp{(1 2 3)} is written as @samp{(1 . (2 . (3
733 . nil)))}.  For @code{nil}-terminated lists, you can use either
734 notation, but list notation is usually clearer and more convenient.
735 When printing a list, the dotted pair notation is only used if the
736 @sc{cdr} of a cons cell is not a list.
738   Here's an example using boxes to illustrate dotted pair notation.
739 This example shows the pair @code{(rose . violet)}:
741 @example
742 @group
743     --- ---
744    |   |   |--> violet
745     --- ---
746      |
747      |
748       --> rose
749 @end group
750 @end example
752   You can combine dotted pair notation with list notation to represent
753 conveniently a chain of cons cells with a non-@code{nil} final @sc{cdr}.
754 You write a dot after the last element of the list, followed by the
755 @sc{cdr} of the final cons cell.  For example, @code{(rose violet
756 . buttercup)} is equivalent to @code{(rose . (violet . buttercup))}.
757 The object looks like this:
759 @example
760 @group
761     --- ---      --- ---
762    |   |   |--> |   |   |--> buttercup
763     --- ---      --- ---
764      |            |
765      |            |
766       --> rose     --> violet
767 @end group
768 @end example
770   The syntax @code{(rose .@: violet .@: buttercup)} is invalid because
771 there is nothing that it could mean.  If anything, it would say to put
772 @code{buttercup} in the @sc{cdr} of a cons cell whose @sc{cdr} is already
773 used for @code{violet}.
775   The list @code{(rose violet)} is equivalent to @code{(rose . (violet))},
776 and looks like this:
778 @example
779 @group
780     --- ---      --- ---
781    |   |   |--> |   |   |--> nil
782     --- ---      --- ---
783      |            |
784      |            |
785       --> rose     --> violet
786 @end group
787 @end example
789   Similarly, the three-element list @code{(rose violet buttercup)}
790 is equivalent to @code{(rose . (violet . (buttercup)))}.
791 @ifnottex
792 It looks like this:
794 @example
795 @group
796     --- ---      --- ---      --- ---
797    |   |   |--> |   |   |--> |   |   |--> nil
798     --- ---      --- ---      --- ---
799      |            |            |
800      |            |            |
801       --> rose     --> violet   --> buttercup
802 @end group
803 @end example
804 @end ifnottex
806 @node Association List Type
807 @comment  node-name,  next,  previous,  up
808 @subsubsection Association List Type
810   An @dfn{association list} or @dfn{alist} is a specially-constructed
811 list whose elements are cons cells.  In each element, the @sc{car} is
812 considered a @dfn{key}, and the @sc{cdr} is considered an
813 @dfn{associated value}.  (In some cases, the associated value is stored
814 in the @sc{car} of the @sc{cdr}.)  Association lists are often used as
815 stacks, since it is easy to add or remove associations at the front of
816 the list.
818   For example,
820 @example
821 (setq alist-of-colors
822       '((rose . red) (lily . white) (buttercup . yellow)))
823 @end example
825 @noindent
826 sets the variable @code{alist-of-colors} to an alist of three elements.  In the
827 first element, @code{rose} is the key and @code{red} is the value.
829   @xref{Association Lists}, for a further explanation of alists and for
830 functions that work on alists.  @xref{Hash Tables}, for another kind of
831 lookup table, which is much faster for handling a large number of keys.
833 @node Array Type
834 @subsection Array Type
836   An @dfn{array} is composed of an arbitrary number of slots for
837 holding or referring to other Lisp objects, arranged in a contiguous block of
838 memory.  Accessing any element of an array takes approximately the same
839 amount of time.  In contrast, accessing an element of a list requires
840 time proportional to the position of the element in the list.  (Elements
841 at the end of a list take longer to access than elements at the
842 beginning of a list.)
844   Emacs defines four types of array: strings, vectors, bool-vectors, and
845 char-tables.
847   A string is an array of characters and a vector is an array of
848 arbitrary objects.  A bool-vector can hold only @code{t} or @code{nil}.
849 These kinds of array may have any length up to the largest integer.
850 Char-tables are sparse arrays indexed by any valid character code; they
851 can hold arbitrary objects.
853   The first element of an array has index zero, the second element has
854 index 1, and so on.  This is called @dfn{zero-origin} indexing.  For
855 example, an array of four elements has indices 0, 1, 2, @w{and 3}.  The
856 largest possible index value is one less than the length of the array.
857 Once an array is created, its length is fixed.
859   All Emacs Lisp arrays are one-dimensional.  (Most other programming
860 languages support multidimensional arrays, but they are not essential;
861 you can get the same effect with an array of arrays.)  Each type of
862 array has its own read syntax; see the following sections for details.
864   The array type is contained in the sequence type and
865 contains the string type, the vector type, the bool-vector type, and the
866 char-table type.
868 @node String Type
869 @subsection String Type
871   A @dfn{string} is an array of characters.  Strings are used for many
872 purposes in Emacs, as can be expected in a text editor; for example, as
873 the names of Lisp symbols, as messages for the user, and to represent
874 text extracted from buffers.  Strings in Lisp are constants: evaluation
875 of a string returns the same string.
877   @xref{Strings and Characters}, for functions that operate on strings.
879 @menu
880 * Syntax for Strings::
881 * Non-ASCII in Strings::
882 * Nonprinting Characters::
883 * Text Props and Strings::
884 @end menu
886 @node Syntax for Strings
887 @subsubsection Syntax for Strings
889 @cindex @samp{"} in strings
890 @cindex double-quote in strings
891 @cindex @samp{\} in strings
892 @cindex backslash in strings
893   The read syntax for strings is a double-quote, an arbitrary number of
894 characters, and another double-quote, @code{"like this"}.  To include a
895 double-quote in a string, precede it with a backslash; thus, @code{"\""}
896 is a string containing just a single double-quote character.  Likewise,
897 you can include a backslash by preceding it with another backslash, like
898 this: @code{"this \\ is a single embedded backslash"}.
900 @cindex newline in strings
901   The newline character is not special in the read syntax for strings;
902 if you write a new line between the double-quotes, it becomes a
903 character in the string.  But an escaped newline---one that is preceded
904 by @samp{\}---does not become part of the string; i.e., the Lisp reader
905 ignores an escaped newline while reading a string.  An escaped space
906 @w{@samp{\ }} is likewise ignored.
908 @example
909 "It is useful to include newlines
910 in documentation strings,
911 but the newline is \
912 ignored if escaped."
913      @result{} "It is useful to include newlines
914 in documentation strings,
915 but the newline is ignored if escaped."
916 @end example
918 @node Non-ASCII in Strings
919 @subsubsection Non-@acronym{ASCII} Characters in Strings
921   You can include a non-@acronym{ASCII} international character in a string
922 constant by writing it literally.  There are two text representations
923 for non-@acronym{ASCII} characters in Emacs strings (and in buffers): unibyte
924 and multibyte.  If the string constant is read from a multibyte source,
925 such as a multibyte buffer or string, or a file that would be visited as
926 multibyte, then the character is read as a multibyte character, and that
927 makes the string multibyte.  If the string constant is read from a
928 unibyte source, then the character is read as unibyte and that makes the
929 string unibyte.
931   You can also represent a multibyte non-@acronym{ASCII} character with its
932 character code: use a hex escape, @samp{\x@var{nnnnnnn}}, with as many
933 digits as necessary.  (Multibyte non-@acronym{ASCII} character codes are all
934 greater than 256.)  Any character which is not a valid hex digit
935 terminates this construct.  If the next character in the string could be
936 interpreted as a hex digit, write @w{@samp{\ }} (backslash and space) to
937 terminate the hex escape---for example, @w{@samp{\x8e0\ }} represents
938 one character, @samp{a} with grave accent.  @w{@samp{\ }} in a string
939 constant is just like backslash-newline; it does not contribute any
940 character to the string, but it does terminate the preceding hex escape.
942   You can represent a unibyte non-@acronym{ASCII} character with its
943 character code, which must be in the range from 128 (0200 octal) to
944 255 (0377 octal).  If you write all such character codes in octal and
945 the string contains no other characters forcing it to be multibyte,
946 this produces a unibyte string.  However, using any hex escape in a
947 string (even for an @acronym{ASCII} character) forces the string to be
948 multibyte.
950   @xref{Text Representations}, for more information about the two
951 text representations.
953 @node Nonprinting Characters
954 @subsubsection Nonprinting Characters in Strings
956   You can use the same backslash escape-sequences in a string constant
957 as in character literals (but do not use the question mark that begins a
958 character constant).  For example, you can write a string containing the
959 nonprinting characters tab and @kbd{C-a}, with commas and spaces between
960 them, like this: @code{"\t, \C-a"}.  @xref{Character Type}, for a
961 description of the read syntax for characters.
963   However, not all of the characters you can write with backslash
964 escape-sequences are valid in strings.  The only control characters that
965 a string can hold are the @acronym{ASCII} control characters.  Strings do not
966 distinguish case in @acronym{ASCII} control characters.
968   Properly speaking, strings cannot hold meta characters; but when a
969 string is to be used as a key sequence, there is a special convention
970 that provides a way to represent meta versions of @acronym{ASCII}
971 characters in a string.  If you use the @samp{\M-} syntax to indicate
972 a meta character in a string constant, this sets the
973 @tex
974 @math{2^{7}}
975 @end tex
976 @ifnottex
977 2**7
978 @end ifnottex
979 bit of the character in the string.  If the string is used in
980 @code{define-key} or @code{lookup-key}, this numeric code is translated
981 into the equivalent meta character.  @xref{Character Type}.
983   Strings cannot hold characters that have the hyper, super, or alt
984 modifiers.
986 @node Text Props and Strings
987 @subsubsection Text Properties in Strings
989   A string can hold properties for the characters it contains, in
990 addition to the characters themselves.  This enables programs that copy
991 text between strings and buffers to copy the text's properties with no
992 special effort.  @xref{Text Properties}, for an explanation of what text
993 properties mean.  Strings with text properties use a special read and
994 print syntax:
996 @example
997 #("@var{characters}" @var{property-data}...)
998 @end example
1000 @noindent
1001 where @var{property-data} consists of zero or more elements, in groups
1002 of three as follows:
1004 @example
1005 @var{beg} @var{end} @var{plist}
1006 @end example
1008 @noindent
1009 The elements @var{beg} and @var{end} are integers, and together specify
1010 a range of indices in the string; @var{plist} is the property list for
1011 that range.  For example,
1013 @example
1014 #("foo bar" 0 3 (face bold) 3 4 nil 4 7 (face italic))
1015 @end example
1017 @noindent
1018 represents a string whose textual contents are @samp{foo bar}, in which
1019 the first three characters have a @code{face} property with value
1020 @code{bold}, and the last three have a @code{face} property with value
1021 @code{italic}.  (The fourth character has no text properties, so its
1022 property list is @code{nil}.  It is not actually necessary to mention
1023 ranges with @code{nil} as the property list, since any characters not
1024 mentioned in any range will default to having no properties.)
1026 @node Vector Type
1027 @subsection Vector Type
1029   A @dfn{vector} is a one-dimensional array of elements of any type.  It
1030 takes a constant amount of time to access any element of a vector.  (In
1031 a list, the access time of an element is proportional to the distance of
1032 the element from the beginning of the list.)
1034   The printed representation of a vector consists of a left square
1035 bracket, the elements, and a right square bracket.  This is also the
1036 read syntax.  Like numbers and strings, vectors are considered constants
1037 for evaluation.
1039 @example
1040 [1 "two" (three)]      ; @r{A vector of three elements.}
1041      @result{} [1 "two" (three)]
1042 @end example
1044   @xref{Vectors}, for functions that work with vectors.
1046 @node Char-Table Type
1047 @subsection Char-Table Type
1049   A @dfn{char-table} is a one-dimensional array of elements of any type,
1050 indexed by character codes.  Char-tables have certain extra features to
1051 make them more useful for many jobs that involve assigning information
1052 to character codes---for example, a char-table can have a parent to
1053 inherit from, a default value, and a small number of extra slots to use for
1054 special purposes.  A char-table can also specify a single value for
1055 a whole character set.
1057   The printed representation of a char-table is like a vector
1058 except that there is an extra @samp{#^} at the beginning.
1060   @xref{Char-Tables}, for special functions to operate on char-tables.
1061 Uses of char-tables include:
1063 @itemize @bullet
1064 @item
1065 Case tables (@pxref{Case Tables}).
1067 @item
1068 Character category tables (@pxref{Categories}).
1070 @item
1071 Display tables (@pxref{Display Tables}).
1073 @item
1074 Syntax tables (@pxref{Syntax Tables}).
1075 @end itemize
1077 @node Bool-Vector Type
1078 @subsection Bool-Vector Type
1080   A @dfn{bool-vector} is a one-dimensional array of elements that
1081 must be @code{t} or @code{nil}.
1083   The printed representation of a bool-vector is like a string, except
1084 that it begins with @samp{#&} followed by the length.  The string
1085 constant that follows actually specifies the contents of the bool-vector
1086 as a bitmap---each ``character'' in the string contains 8 bits, which
1087 specify the next 8 elements of the bool-vector (1 stands for @code{t},
1088 and 0 for @code{nil}).  The least significant bits of the character
1089 correspond to the lowest indices in the bool-vector.
1091 @example
1092 (make-bool-vector 3 t)
1093      @result{} #&3"^G"
1094 (make-bool-vector 3 nil)
1095      @result{} #&3"^@@"
1096 @end example
1098 @noindent
1099 These results make sense, because the binary code for @samp{C-g} is
1100 111 and @samp{C-@@} is the character with code 0.
1102   If the length is not a multiple of 8, the printed representation
1103 shows extra elements, but these extras really make no difference.  For
1104 instance, in the next example, the two bool-vectors are equal, because
1105 only the first 3 bits are used:
1107 @example
1108 (equal #&3"\377" #&3"\007")
1109      @result{} t
1110 @end example
1112 @node Hash Table Type
1113 @subsection Hash Table Type
1115     A hash table is a very fast kind of lookup table, somewhat like an
1116 alist in that it maps keys to corresponding values, but much faster.
1117 Hash tables are a new feature in Emacs 21; they have no read syntax, and
1118 print using hash notation.  @xref{Hash Tables}.
1120 @example
1121 (make-hash-table)
1122      @result{} #<hash-table 'eql nil 0/65 0x83af980>
1123 @end example
1125 @node Function Type
1126 @subsection Function Type
1128   Just as functions in other programming languages are executable,
1129 @dfn{Lisp function} objects are pieces of executable code.  However,
1130 functions in Lisp are primarily Lisp objects, and only secondarily the
1131 text which represents them.  These Lisp objects are lambda expressions:
1132 lists whose first element is the symbol @code{lambda} (@pxref{Lambda
1133 Expressions}).
1135   In most programming languages, it is impossible to have a function
1136 without a name.  In Lisp, a function has no intrinsic name.  A lambda
1137 expression is also called an @dfn{anonymous function} (@pxref{Anonymous
1138 Functions}).  A named function in Lisp is actually a symbol with a valid
1139 function in its function cell (@pxref{Defining Functions}).
1141   Most of the time, functions are called when their names are written in
1142 Lisp expressions in Lisp programs.  However, you can construct or obtain
1143 a function object at run time and then call it with the primitive
1144 functions @code{funcall} and @code{apply}.  @xref{Calling Functions}.
1146 @node Macro Type
1147 @subsection Macro Type
1149   A @dfn{Lisp macro} is a user-defined construct that extends the Lisp
1150 language.  It is represented as an object much like a function, but with
1151 different argument-passing semantics.  A Lisp macro has the form of a
1152 list whose first element is the symbol @code{macro} and whose @sc{cdr}
1153 is a Lisp function object, including the @code{lambda} symbol.
1155   Lisp macro objects are usually defined with the built-in
1156 @code{defmacro} function, but any list that begins with @code{macro} is
1157 a macro as far as Emacs is concerned.  @xref{Macros}, for an explanation
1158 of how to write a macro.
1160   @strong{Warning}: Lisp macros and keyboard macros (@pxref{Keyboard
1161 Macros}) are entirely different things.  When we use the word ``macro''
1162 without qualification, we mean a Lisp macro, not a keyboard macro.
1164 @node Primitive Function Type
1165 @subsection Primitive Function Type
1166 @cindex special forms
1168   A @dfn{primitive function} is a function callable from Lisp but
1169 written in the C programming language.  Primitive functions are also
1170 called @dfn{subrs} or @dfn{built-in functions}.  (The word ``subr'' is
1171 derived from ``subroutine''.)  Most primitive functions evaluate all
1172 their arguments when they are called.  A primitive function that does
1173 not evaluate all its arguments is called a @dfn{special form}
1174 (@pxref{Special Forms}).@refill
1176   It does not matter to the caller of a function whether the function is
1177 primitive.  However, this does matter if you try to redefine a primitive
1178 with a function written in Lisp.  The reason is that the primitive
1179 function may be called directly from C code.  Calls to the redefined
1180 function from Lisp will use the new definition, but calls from C code
1181 may still use the built-in definition.  Therefore, @strong{we discourage
1182 redefinition of primitive functions}.
1184   The term @dfn{function} refers to all Emacs functions, whether written
1185 in Lisp or C.  @xref{Function Type}, for information about the
1186 functions written in Lisp.
1188   Primitive functions have no read syntax and print in hash notation
1189 with the name of the subroutine.
1191 @example
1192 @group
1193 (symbol-function 'car)          ; @r{Access the function cell}
1194                                 ;   @r{of the symbol.}
1195      @result{} #<subr car>
1196 (subrp (symbol-function 'car))  ; @r{Is this a primitive function?}
1197      @result{} t                       ; @r{Yes.}
1198 @end group
1199 @end example
1201 @node Byte-Code Type
1202 @subsection Byte-Code Function Type
1204 The byte compiler produces @dfn{byte-code function objects}.
1205 Internally, a byte-code function object is much like a vector; however,
1206 the evaluator handles this data type specially when it appears as a
1207 function to be called.  @xref{Byte Compilation}, for information about
1208 the byte compiler.
1210 The printed representation and read syntax for a byte-code function
1211 object is like that for a vector, with an additional @samp{#} before the
1212 opening @samp{[}.
1214 @node Autoload Type
1215 @subsection Autoload Type
1217   An @dfn{autoload object} is a list whose first element is the symbol
1218 @code{autoload}.  It is stored as the function definition of a symbol,
1219 where it serves as a placeholder for the real definition.  The autoload
1220 object says that the real definition is found in a file of Lisp code
1221 that should be loaded when necessary.  It contains the name of the file,
1222 plus some other information about the real definition.
1224   After the file has been loaded, the symbol should have a new function
1225 definition that is not an autoload object.  The new definition is then
1226 called as if it had been there to begin with.  From the user's point of
1227 view, the function call works as expected, using the function definition
1228 in the loaded file.
1230   An autoload object is usually created with the function
1231 @code{autoload}, which stores the object in the function cell of a
1232 symbol.  @xref{Autoload}, for more details.
1234 @node Editing Types
1235 @section Editing Types
1236 @cindex editing types
1238   The types in the previous section are used for general programming
1239 purposes, and most of them are common to most Lisp dialects.  Emacs Lisp
1240 provides several additional data types for purposes connected with
1241 editing.
1243 @menu
1244 * Buffer Type::         The basic object of editing.
1245 * Marker Type::         A position in a buffer.
1246 * Window Type::         Buffers are displayed in windows.
1247 * Frame Type::          Windows subdivide frames.
1248 * Window Configuration Type::   Recording the way a frame is subdivided.
1249 * Frame Configuration Type::    Recording the status of all frames.
1250 * Process Type::        A process running on the underlying OS.
1251 * Stream Type::         Receive or send characters.
1252 * Keymap Type::         What function a keystroke invokes.
1253 * Overlay Type::        How an overlay is represented.
1254 @end menu
1256 @node Buffer Type
1257 @subsection Buffer Type
1259   A @dfn{buffer} is an object that holds text that can be edited
1260 (@pxref{Buffers}).  Most buffers hold the contents of a disk file
1261 (@pxref{Files}) so they can be edited, but some are used for other
1262 purposes.  Most buffers are also meant to be seen by the user, and
1263 therefore displayed, at some time, in a window (@pxref{Windows}).  But a
1264 buffer need not be displayed in any window.
1266   The contents of a buffer are much like a string, but buffers are not
1267 used like strings in Emacs Lisp, and the available operations are
1268 different.  For example, you can insert text efficiently into an
1269 existing buffer, altering the buffer's contents, whereas ``inserting''
1270 text into a string requires concatenating substrings, and the result is
1271 an entirely new string object.
1273   Each buffer has a designated position called @dfn{point}
1274 (@pxref{Positions}).  At any time, one buffer is the @dfn{current
1275 buffer}.  Most editing commands act on the contents of the current
1276 buffer in the neighborhood of point.  Many of the standard Emacs
1277 functions manipulate or test the characters in the current buffer; a
1278 whole chapter in this manual is devoted to describing these functions
1279 (@pxref{Text}).
1281   Several other data structures are associated with each buffer:
1283 @itemize @bullet
1284 @item
1285 a local syntax table (@pxref{Syntax Tables});
1287 @item
1288 a local keymap (@pxref{Keymaps}); and,
1290 @item
1291 a list of buffer-local variable bindings (@pxref{Buffer-Local Variables}).
1293 @item
1294 overlays (@pxref{Overlays}).
1296 @item
1297 text properties for the text in the buffer (@pxref{Text Properties}).
1298 @end itemize
1300 @noindent
1301 The local keymap and variable list contain entries that individually
1302 override global bindings or values.  These are used to customize the
1303 behavior of programs in different buffers, without actually changing the
1304 programs.
1306   A buffer may be @dfn{indirect}, which means it shares the text
1307 of another buffer, but presents it differently.  @xref{Indirect Buffers}.
1309   Buffers have no read syntax.  They print in hash notation, showing the
1310 buffer name.
1312 @example
1313 @group
1314 (current-buffer)
1315      @result{} #<buffer objects.texi>
1316 @end group
1317 @end example
1319 @node Marker Type
1320 @subsection Marker Type
1322   A @dfn{marker} denotes a position in a specific buffer.  Markers
1323 therefore have two components: one for the buffer, and one for the
1324 position.  Changes in the buffer's text automatically relocate the
1325 position value as necessary to ensure that the marker always points
1326 between the same two characters in the buffer.
1328   Markers have no read syntax.  They print in hash notation, giving the
1329 current character position and the name of the buffer.
1331 @example
1332 @group
1333 (point-marker)
1334      @result{} #<marker at 10779 in objects.texi>
1335 @end group
1336 @end example
1338 @xref{Markers}, for information on how to test, create, copy, and move
1339 markers.
1341 @node Window Type
1342 @subsection Window Type
1344   A @dfn{window} describes the portion of the terminal screen that Emacs
1345 uses to display a buffer.  Every window has one associated buffer, whose
1346 contents appear in the window.  By contrast, a given buffer may appear
1347 in one window, no window, or several windows.
1349   Though many windows may exist simultaneously, at any time one window
1350 is designated the @dfn{selected window}.  This is the window where the
1351 cursor is (usually) displayed when Emacs is ready for a command.  The
1352 selected window usually displays the current buffer, but this is not
1353 necessarily the case.
1355   Windows are grouped on the screen into frames; each window belongs to
1356 one and only one frame.  @xref{Frame Type}.
1358   Windows have no read syntax.  They print in hash notation, giving the
1359 window number and the name of the buffer being displayed.  The window
1360 numbers exist to identify windows uniquely, since the buffer displayed
1361 in any given window can change frequently.
1363 @example
1364 @group
1365 (selected-window)
1366      @result{} #<window 1 on objects.texi>
1367 @end group
1368 @end example
1370   @xref{Windows}, for a description of the functions that work on windows.
1372 @node Frame Type
1373 @subsection Frame Type
1375   A @dfn{frame} is a rectangle on the screen that contains one or more
1376 Emacs windows.  A frame initially contains a single main window (plus
1377 perhaps a minibuffer window) which you can subdivide vertically or
1378 horizontally into smaller windows.
1380   Frames have no read syntax.  They print in hash notation, giving the
1381 frame's title, plus its address in core (useful to identify the frame
1382 uniquely).
1384 @example
1385 @group
1386 (selected-frame)
1387      @result{} #<frame emacs@@psilocin.gnu.org 0xdac80>
1388 @end group
1389 @end example
1391   @xref{Frames}, for a description of the functions that work on frames.
1393 @node Window Configuration Type
1394 @subsection Window Configuration Type
1395 @cindex screen layout
1397   A @dfn{window configuration} stores information about the positions,
1398 sizes, and contents of the windows in a frame, so you can recreate the
1399 same arrangement of windows later.
1401   Window configurations do not have a read syntax; their print syntax
1402 looks like @samp{#<window-configuration>}.  @xref{Window
1403 Configurations}, for a description of several functions related to
1404 window configurations.
1406 @node Frame Configuration Type
1407 @subsection Frame Configuration Type
1408 @cindex screen layout
1410   A @dfn{frame configuration} stores information about the positions,
1411 sizes, and contents of the windows in all frames.  It is actually
1412 a list whose @sc{car} is @code{frame-configuration} and whose
1413 @sc{cdr} is an alist.  Each alist element describes one frame,
1414 which appears as the @sc{car} of that element.
1416   @xref{Frame Configurations}, for a description of several functions
1417 related to frame configurations.
1419 @node Process Type
1420 @subsection Process Type
1422   The word @dfn{process} usually means a running program.  Emacs itself
1423 runs in a process of this sort.  However, in Emacs Lisp, a process is a
1424 Lisp object that designates a subprocess created by the Emacs process.
1425 Programs such as shells, GDB, ftp, and compilers, running in
1426 subprocesses of Emacs, extend the capabilities of Emacs.
1428   An Emacs subprocess takes textual input from Emacs and returns textual
1429 output to Emacs for further manipulation.  Emacs can also send signals
1430 to the subprocess.
1432   Process objects have no read syntax.  They print in hash notation,
1433 giving the name of the process:
1435 @example
1436 @group
1437 (process-list)
1438      @result{} (#<process shell>)
1439 @end group
1440 @end example
1442 @xref{Processes}, for information about functions that create, delete,
1443 return information about, send input or signals to, and receive output
1444 from processes.
1446 @node Stream Type
1447 @subsection Stream Type
1449   A @dfn{stream} is an object that can be used as a source or sink for
1450 characters---either to supply characters for input or to accept them as
1451 output.  Many different types can be used this way: markers, buffers,
1452 strings, and functions.  Most often, input streams (character sources)
1453 obtain characters from the keyboard, a buffer, or a file, and output
1454 streams (character sinks) send characters to a buffer, such as a
1455 @file{*Help*} buffer, or to the echo area.
1457   The object @code{nil}, in addition to its other meanings, may be used
1458 as a stream.  It stands for the value of the variable
1459 @code{standard-input} or @code{standard-output}.  Also, the object
1460 @code{t} as a stream specifies input using the minibuffer
1461 (@pxref{Minibuffers}) or output in the echo area (@pxref{The Echo
1462 Area}).
1464   Streams have no special printed representation or read syntax, and
1465 print as whatever primitive type they are.
1467   @xref{Read and Print}, for a description of functions
1468 related to streams, including parsing and printing functions.
1470 @node Keymap Type
1471 @subsection Keymap Type
1473   A @dfn{keymap} maps keys typed by the user to commands.  This mapping
1474 controls how the user's command input is executed.  A keymap is actually
1475 a list whose @sc{car} is the symbol @code{keymap}.
1477   @xref{Keymaps}, for information about creating keymaps, handling prefix
1478 keys, local as well as global keymaps, and changing key bindings.
1480 @node Overlay Type
1481 @subsection Overlay Type
1483   An @dfn{overlay} specifies properties that apply to a part of a
1484 buffer.  Each overlay applies to a specified range of the buffer, and
1485 contains a property list (a list whose elements are alternating property
1486 names and values).  Overlay properties are used to present parts of the
1487 buffer temporarily in a different display style.  Overlays have no read
1488 syntax, and print in hash notation, giving the buffer name and range of
1489 positions.
1491   @xref{Overlays}, for how to create and use overlays.
1493 @node Circular Objects
1494 @section Read Syntax for Circular Objects
1495 @cindex circular structure, read syntax
1496 @cindex shared structure, read syntax
1497 @cindex @samp{#@var{n}=} read syntax
1498 @cindex @samp{#@var{n}#} read syntax
1500   In Emacs 21, to represent shared or circular structure within a
1501 complex of Lisp objects, you can use the reader constructs
1502 @samp{#@var{n}=} and @samp{#@var{n}#}.
1504   Use @code{#@var{n}=} before an object to label it for later reference;
1505 subsequently, you can use @code{#@var{n}#} to refer the same object in
1506 another place.  Here, @var{n} is some integer.  For example, here is how
1507 to make a list in which the first element recurs as the third element:
1509 @example
1510 (#1=(a) b #1#)
1511 @end example
1513 @noindent
1514 This differs from ordinary syntax such as this
1516 @example
1517 ((a) b (a))
1518 @end example
1520 @noindent
1521 which would result in a list whose first and third elements
1522 look alike but are not the same Lisp object.  This shows the difference:
1524 @example
1525 (prog1 nil
1526   (setq x '(#1=(a) b #1#)))
1527 (eq (nth 0 x) (nth 2 x))
1528      @result{} t
1529 (setq x '((a) b (a)))
1530 (eq (nth 0 x) (nth 2 x))
1531      @result{} nil
1532 @end example
1534   You can also use the same syntax to make a circular structure, which
1535 appears as an ``element'' within itself.  Here is an example:
1537 @example
1538 #1=(a #1#)
1539 @end example
1541 @noindent
1542 This makes a list whose second element is the list itself.
1543 Here's how you can see that it really works:
1545 @example
1546 (prog1 nil
1547   (setq x '#1=(a #1#)))
1548 (eq x (cadr x))
1549      @result{} t
1550 @end example
1552   The Lisp printer can produce this syntax to record circular and shared
1553 structure in a Lisp object, if you bind the variable @code{print-circle}
1554 to a non-@code{nil} value.  @xref{Output Variables}.
1556 @node Type Predicates
1557 @section Type Predicates
1558 @cindex predicates
1559 @cindex type checking
1560 @kindex wrong-type-argument
1562   The Emacs Lisp interpreter itself does not perform type checking on
1563 the actual arguments passed to functions when they are called.  It could
1564 not do so, since function arguments in Lisp do not have declared data
1565 types, as they do in other programming languages.  It is therefore up to
1566 the individual function to test whether each actual argument belongs to
1567 a type that the function can use.
1569   All built-in functions do check the types of their actual arguments
1570 when appropriate, and signal a @code{wrong-type-argument} error if an
1571 argument is of the wrong type.  For example, here is what happens if you
1572 pass an argument to @code{+} that it cannot handle:
1574 @example
1575 @group
1576 (+ 2 'a)
1577      @error{} Wrong type argument: number-or-marker-p, a
1578 @end group
1579 @end example
1581 @cindex type predicates
1582 @cindex testing types
1583   If you want your program to handle different types differently, you
1584 must do explicit type checking.  The most common way to check the type
1585 of an object is to call a @dfn{type predicate} function.  Emacs has a
1586 type predicate for each type, as well as some predicates for
1587 combinations of types.
1589   A type predicate function takes one argument; it returns @code{t} if
1590 the argument belongs to the appropriate type, and @code{nil} otherwise.
1591 Following a general Lisp convention for predicate functions, most type
1592 predicates' names end with @samp{p}.
1594   Here is an example which uses the predicates @code{listp} to check for
1595 a list and @code{symbolp} to check for a symbol.
1597 @example
1598 (defun add-on (x)
1599   (cond ((symbolp x)
1600          ;; If X is a symbol, put it on LIST.
1601          (setq list (cons x list)))
1602         ((listp x)
1603          ;; If X is a list, add its elements to LIST.
1604          (setq list (append x list)))
1605         (t
1606          ;; We handle only symbols and lists.
1607          (error "Invalid argument %s in add-on" x))))
1608 @end example
1610   Here is a table of predefined type predicates, in alphabetical order,
1611 with references to further information.
1613 @table @code
1614 @item atom
1615 @xref{List-related Predicates, atom}.
1617 @item arrayp
1618 @xref{Array Functions, arrayp}.
1620 @item bool-vector-p
1621 @xref{Bool-Vectors, bool-vector-p}.
1623 @item bufferp
1624 @xref{Buffer Basics, bufferp}.
1626 @item byte-code-function-p
1627 @xref{Byte-Code Type, byte-code-function-p}.
1629 @item case-table-p
1630 @xref{Case Tables, case-table-p}.
1632 @item char-or-string-p
1633 @xref{Predicates for Strings, char-or-string-p}.
1635 @item char-table-p
1636 @xref{Char-Tables, char-table-p}.
1638 @item commandp
1639 @xref{Interactive Call, commandp}.
1641 @item consp
1642 @xref{List-related Predicates, consp}.
1644 @item display-table-p
1645 @xref{Display Tables, display-table-p}.
1647 @item floatp
1648 @xref{Predicates on Numbers, floatp}.
1650 @item frame-configuration-p
1651 @xref{Frame Configurations, frame-configuration-p}.
1653 @item frame-live-p
1654 @xref{Deleting Frames, frame-live-p}.
1656 @item framep
1657 @xref{Frames, framep}.
1659 @item functionp
1660 @xref{Functions, functionp}.
1662 @item integer-or-marker-p
1663 @xref{Predicates on Markers, integer-or-marker-p}.
1665 @item integerp
1666 @xref{Predicates on Numbers, integerp}.
1668 @item keymapp
1669 @xref{Creating Keymaps, keymapp}.
1671 @item keywordp
1672 @xref{Constant Variables}.
1674 @item listp
1675 @xref{List-related Predicates, listp}.
1677 @item markerp
1678 @xref{Predicates on Markers, markerp}.
1680 @item wholenump
1681 @xref{Predicates on Numbers, wholenump}.
1683 @item nlistp
1684 @xref{List-related Predicates, nlistp}.
1686 @item numberp
1687 @xref{Predicates on Numbers, numberp}.
1689 @item number-or-marker-p
1690 @xref{Predicates on Markers, number-or-marker-p}.
1692 @item overlayp
1693 @xref{Overlays, overlayp}.
1695 @item processp
1696 @xref{Processes, processp}.
1698 @item sequencep
1699 @xref{Sequence Functions, sequencep}.
1701 @item stringp
1702 @xref{Predicates for Strings, stringp}.
1704 @item subrp
1705 @xref{Function Cells, subrp}.
1707 @item symbolp
1708 @xref{Symbols, symbolp}.
1710 @item syntax-table-p
1711 @xref{Syntax Tables, syntax-table-p}.
1713 @item user-variable-p
1714 @xref{Defining Variables, user-variable-p}.
1716 @item vectorp
1717 @xref{Vectors, vectorp}.
1719 @item window-configuration-p
1720 @xref{Window Configurations, window-configuration-p}.
1722 @item window-live-p
1723 @xref{Deleting Windows, window-live-p}.
1725 @item windowp
1726 @xref{Basic Windows, windowp}.
1727 @end table
1729   The most general way to check the type of an object is to call the
1730 function @code{type-of}.  Recall that each object belongs to one and
1731 only one primitive type; @code{type-of} tells you which one (@pxref{Lisp
1732 Data Types}).  But @code{type-of} knows nothing about non-primitive
1733 types.  In most cases, it is more convenient to use type predicates than
1734 @code{type-of}.
1736 @defun type-of object
1737 This function returns a symbol naming the primitive type of
1738 @var{object}.  The value is one of the symbols @code{symbol},
1739 @code{integer}, @code{float}, @code{string}, @code{cons}, @code{vector},
1740 @code{char-table}, @code{bool-vector}, @code{hash-table}, @code{subr},
1741 @code{compiled-function}, @code{marker}, @code{overlay}, @code{window},
1742 @code{buffer}, @code{frame}, @code{process}, or
1743 @code{window-configuration}.
1745 @example
1746 (type-of 1)
1747      @result{} integer
1748 (type-of 'nil)
1749      @result{} symbol
1750 (type-of '())    ; @r{@code{()} is @code{nil}.}
1751      @result{} symbol
1752 (type-of '(x))
1753      @result{} cons
1754 @end example
1755 @end defun
1757 @node Equality Predicates
1758 @section Equality Predicates
1759 @cindex equality
1761   Here we describe two functions that test for equality between any two
1762 objects.  Other functions test equality between objects of specific
1763 types, e.g., strings.  For these predicates, see the appropriate chapter
1764 describing the data type.
1766 @defun eq object1 object2
1767 This function returns @code{t} if @var{object1} and @var{object2} are
1768 the same object, @code{nil} otherwise.  The ``same object'' means that a
1769 change in one will be reflected by the same change in the other.
1771 @code{eq} returns @code{t} if @var{object1} and @var{object2} are
1772 integers with the same value.  Also, since symbol names are normally
1773 unique, if the arguments are symbols with the same name, they are
1774 @code{eq}.  For other types (e.g., lists, vectors, strings), two
1775 arguments with the same contents or elements are not necessarily
1776 @code{eq} to each other: they are @code{eq} only if they are the same
1777 object.
1779 @example
1780 @group
1781 (eq 'foo 'foo)
1782      @result{} t
1783 @end group
1785 @group
1786 (eq 456 456)
1787      @result{} t
1788 @end group
1790 @group
1791 (eq "asdf" "asdf")
1792      @result{} nil
1793 @end group
1795 @group
1796 (eq '(1 (2 (3))) '(1 (2 (3))))
1797      @result{} nil
1798 @end group
1800 @group
1801 (setq foo '(1 (2 (3))))
1802      @result{} (1 (2 (3)))
1803 (eq foo foo)
1804      @result{} t
1805 (eq foo '(1 (2 (3))))
1806      @result{} nil
1807 @end group
1809 @group
1810 (eq [(1 2) 3] [(1 2) 3])
1811      @result{} nil
1812 @end group
1814 @group
1815 (eq (point-marker) (point-marker))
1816      @result{} nil
1817 @end group
1818 @end example
1820 The @code{make-symbol} function returns an uninterned symbol, distinct
1821 from the symbol that is used if you write the name in a Lisp expression.
1822 Distinct symbols with the same name are not @code{eq}.  @xref{Creating
1823 Symbols}.
1825 @example
1826 @group
1827 (eq (make-symbol "foo") 'foo)
1828      @result{} nil
1829 @end group
1830 @end example
1831 @end defun
1833 @defun equal object1 object2
1834 This function returns @code{t} if @var{object1} and @var{object2} have
1835 equal components, @code{nil} otherwise.  Whereas @code{eq} tests if its
1836 arguments are the same object, @code{equal} looks inside nonidentical
1837 arguments to see if their elements or contents are the same.  So, if two
1838 objects are @code{eq}, they are @code{equal}, but the converse is not
1839 always true.
1841 @example
1842 @group
1843 (equal 'foo 'foo)
1844      @result{} t
1845 @end group
1847 @group
1848 (equal 456 456)
1849      @result{} t
1850 @end group
1852 @group
1853 (equal "asdf" "asdf")
1854      @result{} t
1855 @end group
1856 @group
1857 (eq "asdf" "asdf")
1858      @result{} nil
1859 @end group
1861 @group
1862 (equal '(1 (2 (3))) '(1 (2 (3))))
1863      @result{} t
1864 @end group
1865 @group
1866 (eq '(1 (2 (3))) '(1 (2 (3))))
1867      @result{} nil
1868 @end group
1870 @group
1871 (equal [(1 2) 3] [(1 2) 3])
1872      @result{} t
1873 @end group
1874 @group
1875 (eq [(1 2) 3] [(1 2) 3])
1876      @result{} nil
1877 @end group
1879 @group
1880 (equal (point-marker) (point-marker))
1881      @result{} t
1882 @end group
1884 @group
1885 (eq (point-marker) (point-marker))
1886      @result{} nil
1887 @end group
1888 @end example
1890 Comparison of strings is case-sensitive, but does not take account of
1891 text properties---it compares only the characters in the strings.  For
1892 technical reasons, a unibyte string and a multibyte string are
1893 @code{equal} if and only if they contain the same sequence of
1894 character codes and all these codes are either in the range 0 through
1895 127 (@acronym{ASCII}) or 160 through 255 (@code{eight-bit-graphic}).
1896 (@pxref{Text Representations}).
1898 @example
1899 @group
1900 (equal "asdf" "ASDF")
1901      @result{} nil
1902 @end group
1903 @end example
1905 However, two distinct buffers are never considered @code{equal}, even if
1906 their textual contents are the same.
1907 @end defun
1909   The test for equality is implemented recursively; for example, given
1910 two cons cells @var{x} and @var{y}, @code{(equal @var{x} @var{y})}
1911 returns @code{t} if and only if both the expressions below return
1912 @code{t}:
1914 @example
1915 (equal (car @var{x}) (car @var{y}))
1916 (equal (cdr @var{x}) (cdr @var{y}))
1917 @end example
1919 Because of this recursive method, circular lists may therefore cause
1920 infinite recursion (leading to an error).
1922 @ignore
1923    arch-tag: 9711a66e-4749-4265-9e8c-972d55b67096
1924 @end ignore