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