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