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