Mercurial > emacs
annotate lispref/intro.texi @ 43403:fef73ecd984e
(calc-split-manual): Look for calc.texi.
(calc-public-autoloads): Obsolete; remove.
(calc-private-autoloads): Ditto.
(calc-add-autoloads): Ditto.
author | Colin Walters <walters@gnu.org> |
---|---|
date | Mon, 18 Feb 2002 20:06:07 +0000 |
parents | b7965c39be8f |
children | ed648a134b7e |
rev | line source |
---|---|
6453 | 1 @c -*-texinfo-*- |
2 @c This is part of the GNU Emacs Lisp Reference Manual. | |
42826
b7965c39be8f
(VERSION): Increase to 2.9. Update copyright years.
Eli Zaretskii <eliz@gnu.org>
parents:
40470
diff
changeset
|
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 2002 |
b7965c39be8f
(VERSION): Increase to 2.9. Update copyright years.
Eli Zaretskii <eliz@gnu.org>
parents:
40470
diff
changeset
|
4 @c Free Software Foundation, Inc. |
6453 | 5 @c See the file elisp.texi for copying conditions. |
6 @setfilename ../info/intro | |
7 | |
39994
8bf2f6940b14
(VERSION): Add and use it where the the version
Gerd Moellmann <gerd@gnu.org>
parents:
36986
diff
changeset
|
8 @c Versino of the manual. |
42826
b7965c39be8f
(VERSION): Increase to 2.9. Update copyright years.
Eli Zaretskii <eliz@gnu.org>
parents:
40470
diff
changeset
|
9 @set VERSION 2.9 |
39994
8bf2f6940b14
(VERSION): Add and use it where the the version
Gerd Moellmann <gerd@gnu.org>
parents:
36986
diff
changeset
|
10 |
29256 | 11 @node Introduction, Lisp Data Types, Top, Top |
6453 | 12 @comment node-name, next, previous, up |
13 @chapter Introduction | |
14 | |
15 Most of the GNU Emacs text editor is written in the programming | |
16 language called Emacs Lisp. You can write new code in Emacs Lisp and | |
17 install it as an extension to the editor. However, Emacs Lisp is more | |
18 than a mere ``extension language''; it is a full computer programming | |
19 language in its own right. You can use it as you would any other | |
20 programming language. | |
21 | |
22 Because Emacs Lisp is designed for use in an editor, it has special | |
23 features for scanning and parsing text as well as features for handling | |
24 files, buffers, displays, subprocesses, and so on. Emacs Lisp is | |
25 closely integrated with the editing facilities; thus, editing commands | |
26 are functions that can also conveniently be called from Lisp programs, | |
27 and parameters for customization are ordinary Lisp variables. | |
28 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
29 This manual attempts to be a full description of Emacs Lisp. For a |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
30 beginner's introduction to Emacs Lisp, see @cite{An Introduction to |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
31 Emacs Lisp Programming}, by Bob Chassell, also published by the Free |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
32 Software Foundation. This manual presumes considerable familiarity with |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
33 the use of Emacs for editing; see @cite{The GNU Emacs Manual} for this |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
34 basic information. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
35 |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
36 Generally speaking, the earlier chapters describe features of Emacs |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
37 Lisp that have counterparts in many programming languages, and later |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
38 chapters describe features that are peculiar to Emacs Lisp or relate |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
39 specifically to editing. |
6453 | 40 |
39994
8bf2f6940b14
(VERSION): Add and use it where the the version
Gerd Moellmann <gerd@gnu.org>
parents:
36986
diff
changeset
|
41 This is edition @value{VERSION}. |
6453 | 42 |
43 @menu | |
44 * Caveats:: Flaws and a request for help. | |
45 * Lisp History:: Emacs Lisp is descended from Maclisp. | |
46 * Conventions:: How the manual is formatted. | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
47 * Version Info:: Which Emacs version is running? |
6453 | 48 * Acknowledgements:: The authors, editors, and sponsors of this manual. |
49 @end menu | |
50 | |
51 @node Caveats | |
52 @section Caveats | |
40470 | 53 @cindex bugs in this manual |
6453 | 54 |
55 This manual has gone through numerous drafts. It is nearly complete | |
7114 | 56 but not flawless. There are a few topics that are not covered, either |
57 because we consider them secondary (such as most of the individual | |
58 modes) or because they are yet to be written. Because we are not able | |
59 to deal with them completely, we have left out several parts | |
60 intentionally. This includes most information about usage on VMS. | |
6453 | 61 |
62 The manual should be fully correct in what it does cover, and it is | |
63 therefore open to criticism on anything it says---from specific examples | |
64 and descriptive text, to the ordering of chapters and sections. If | |
65 something is confusing, or you find that you have to look at the sources | |
66 or experiment to learn something not covered in the manual, then perhaps | |
67 the manual should be fixed. Please let us know. | |
68 | |
69 @iftex | |
25875 | 70 As you use this manual, we ask that you mark pages with corrections so |
71 you can later look them up and send them to us. If you think of a simple, | |
7114 | 72 real-life example for a function or group of functions, please make an |
6453 | 73 effort to write it up and send it in. Please reference any comments to |
74 the chapter name, section name, and function name, as appropriate, since | |
7114 | 75 page numbers and chapter and section numbers will change and we may have |
76 trouble finding the text you are talking about. Also state the number | |
77 of the edition you are criticizing. | |
6453 | 78 @end iftex |
27193 | 79 @ifnottex |
6453 | 80 |
81 As you use this manual, we ask that you send corrections as soon as you | |
82 find them. If you think of a simple, real life example for a function | |
83 or group of functions, please make an effort to write it up and send it | |
84 in. Please reference any comments to the node name and function or | |
85 variable name, as appropriate. Also state the number of the edition | |
25875 | 86 you are criticizing. |
27193 | 87 @end ifnottex |
6453 | 88 |
89 Please mail comments and corrections to | |
90 | |
91 @example | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
92 bug-lisp-manual@@gnu.org |
6453 | 93 @end example |
94 | |
95 @noindent | |
96 We let mail to this list accumulate unread until someone decides to | |
97 apply the corrections. Months, and sometimes years, go by between | |
98 updates. So please attach no significance to the lack of a reply---your | |
99 mail @emph{will} be acted on in due time. If you want to contact the | |
100 Emacs maintainers more quickly, send mail to | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
101 @code{bug-gnu-emacs@@gnu.org}. |
6453 | 102 |
103 @node Lisp History | |
104 @section Lisp History | |
105 @cindex Lisp history | |
106 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
107 Lisp (LISt Processing language) was first developed in the late 1950s |
6453 | 108 at the Massachusetts Institute of Technology for research in artificial |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
109 intelligence. The great power of the Lisp language makes it ideal |
6453 | 110 for other purposes as well, such as writing editing commands. |
111 | |
112 @cindex Maclisp | |
113 @cindex Common Lisp | |
114 Dozens of Lisp implementations have been built over the years, each | |
115 with its own idiosyncrasies. Many of them were inspired by Maclisp, | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
116 which was written in the 1960s at MIT's Project MAC. Eventually the |
7114 | 117 implementors of the descendants of Maclisp came together and developed a |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
118 standard for Lisp systems, called Common Lisp. In the meantime, Gerry |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
119 Sussman and Guy Steele at MIT developed a simplified but very powerful |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
120 dialect of Lisp, called Scheme. |
6453 | 121 |
122 GNU Emacs Lisp is largely inspired by Maclisp, and a little by Common | |
123 Lisp. If you know Common Lisp, you will notice many similarities. | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
124 However, many features of Common Lisp have been omitted or |
6453 | 125 simplified in order to reduce the memory requirements of GNU Emacs. |
126 Sometimes the simplifications are so drastic that a Common Lisp user | |
127 might be very confused. We will occasionally point out how GNU Emacs | |
128 Lisp differs from Common Lisp. If you don't know Common Lisp, don't | |
129 worry about it; this manual is self-contained. | |
130 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
131 @pindex cl |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
132 A certain amount of Common Lisp emulation is available via the |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
133 @file{cl} library. @xref{Top,, Common Lisp Extension, cl, Common Lisp |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
134 Extensions}. |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
135 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
136 Emacs Lisp is not at all influenced by Scheme; but the GNU project has |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
137 an implementation of Scheme, called Guile. We use Guile in all new GNU |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
138 software that calls for extensibility. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
139 |
6453 | 140 @node Conventions |
141 @section Conventions | |
142 | |
143 This section explains the notational conventions that are used in this | |
144 manual. You may want to skip this section and refer back to it later. | |
145 | |
146 @menu | |
147 * Some Terms:: Explanation of terms we use in this manual. | |
148 * nil and t:: How the symbols @code{nil} and @code{t} are used. | |
149 * Evaluation Notation:: The format we use for examples of evaluation. | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
150 * Printing Notation:: The format we use when examples print text. |
6453 | 151 * Error Messages:: The format we use for examples of errors. |
152 * Buffer Text Notation:: The format we use for buffer contents in examples. | |
153 * Format of Descriptions:: Notation for describing functions, variables, etc. | |
154 @end menu | |
155 | |
156 @node Some Terms | |
157 @subsection Some Terms | |
158 | |
159 Throughout this manual, the phrases ``the Lisp reader'' and ``the Lisp | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
160 printer'' refer to those routines in Lisp that convert textual |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
161 representations of Lisp objects into actual Lisp objects, and vice |
6453 | 162 versa. @xref{Printed Representation}, for more details. You, the |
163 person reading this manual, are thought of as ``the programmer'' and are | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
164 addressed as ``you''. ``The user'' is the person who uses Lisp |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
165 programs, including those you write. |
6453 | 166 |
167 @cindex fonts | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
168 Examples of Lisp code are formatted like this: @code{(list 1 2 3)}. |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
169 Names that represent metasyntactic variables, or arguments to a function |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
170 being described, are formatted like this: @var{first-number}. |
6453 | 171 |
172 @node nil and t | |
173 @subsection @code{nil} and @code{t} | |
174 @cindex @code{nil}, uses of | |
175 @cindex truth value | |
176 @cindex boolean | |
177 @cindex false | |
178 | |
12098 | 179 In Lisp, the symbol @code{nil} has three separate meanings: it |
6453 | 180 is a symbol with the name @samp{nil}; it is the logical truth value |
181 @var{false}; and it is the empty list---the list of zero elements. | |
182 When used as a variable, @code{nil} always has the value @code{nil}. | |
183 | |
184 As far as the Lisp reader is concerned, @samp{()} and @samp{nil} are | |
185 identical: they stand for the same object, the symbol @code{nil}. The | |
186 different ways of writing the symbol are intended entirely for human | |
187 readers. After the Lisp reader has read either @samp{()} or @samp{nil}, | |
188 there is no way to determine which representation was actually written | |
189 by the programmer. | |
190 | |
191 In this manual, we use @code{()} when we wish to emphasize that it | |
192 means the empty list, and we use @code{nil} when we wish to emphasize | |
193 that it means the truth value @var{false}. That is a good convention to use | |
194 in Lisp programs also. | |
195 | |
196 @example | |
197 (cons 'foo ()) ; @r{Emphasize the empty list} | |
198 (not nil) ; @r{Emphasize the truth value @var{false}} | |
199 @end example | |
200 | |
201 @cindex @code{t} and truth | |
202 @cindex true | |
203 In contexts where a truth value is expected, any non-@code{nil} value | |
204 is considered to be @var{true}. However, @code{t} is the preferred way | |
205 to represent the truth value @var{true}. When you need to choose a | |
206 value which represents @var{true}, and there is no other basis for | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
207 choosing, use @code{t}. The symbol @code{t} always has the value |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
208 @code{t}. |
6453 | 209 |
210 In Emacs Lisp, @code{nil} and @code{t} are special symbols that always | |
211 evaluate to themselves. This is so that you do not need to quote them | |
212 to use them as constants in a program. An attempt to change their | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
213 values results in a @code{setting-constant} error. The same is true of |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
214 any symbol whose name starts with a colon (@samp{:}). @xref{Constant |
6453 | 215 Variables}. |
216 | |
217 @node Evaluation Notation | |
218 @subsection Evaluation Notation | |
219 @cindex evaluation notation | |
220 @cindex documentation notation | |
221 | |
222 A Lisp expression that you can evaluate is called a @dfn{form}. | |
223 Evaluating a form always produces a result, which is a Lisp object. In | |
224 the examples in this manual, this is indicated with @samp{@result{}}: | |
225 | |
226 @example | |
227 (car '(1 2)) | |
228 @result{} 1 | |
229 @end example | |
230 | |
231 @noindent | |
232 You can read this as ``@code{(car '(1 2))} evaluates to 1''. | |
233 | |
234 When a form is a macro call, it expands into a new form for Lisp to | |
235 evaluate. We show the result of the expansion with | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
236 @samp{@expansion{}}. We may or may not show the result of the |
6453 | 237 evaluation of the expanded form. |
238 | |
239 @example | |
240 (third '(a b c)) | |
241 @expansion{} (car (cdr (cdr '(a b c)))) | |
242 @result{} c | |
243 @end example | |
244 | |
7114 | 245 Sometimes to help describe one form we show another form that |
6453 | 246 produces identical results. The exact equivalence of two forms is |
247 indicated with @samp{@equiv{}}. | |
248 | |
249 @example | |
250 (make-sparse-keymap) @equiv{} (list 'keymap) | |
251 @end example | |
252 | |
253 @node Printing Notation | |
254 @subsection Printing Notation | |
255 @cindex printing notation | |
256 | |
257 Many of the examples in this manual print text when they are | |
7114 | 258 evaluated. If you execute example code in a Lisp Interaction buffer |
259 (such as the buffer @samp{*scratch*}), the printed text is inserted into | |
260 the buffer. If you execute the example by other means (such as by | |
261 evaluating the function @code{eval-region}), the printed text is | |
26288 | 262 displayed in the echo area. |
6453 | 263 |
264 Examples in this manual indicate printed text with @samp{@print{}}, | |
265 irrespective of where that text goes. The value returned by evaluating | |
266 the form (here @code{bar}) follows on a separate line. | |
267 | |
268 @example | |
269 @group | |
270 (progn (print 'foo) (print 'bar)) | |
271 @print{} foo | |
272 @print{} bar | |
273 @result{} bar | |
274 @end group | |
275 @end example | |
276 | |
277 @node Error Messages | |
278 @subsection Error Messages | |
279 @cindex error message notation | |
280 | |
281 Some examples signal errors. This normally displays an error message | |
282 in the echo area. We show the error message on a line starting with | |
283 @samp{@error{}}. Note that @samp{@error{}} itself does not appear in | |
284 the echo area. | |
285 | |
286 @example | |
287 (+ 23 'x) | |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
12282
diff
changeset
|
288 @error{} Wrong type argument: number-or-marker-p, x |
6453 | 289 @end example |
290 | |
291 @node Buffer Text Notation | |
292 @subsection Buffer Text Notation | |
293 @cindex buffer text notation | |
294 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
295 Some examples describe modifications to the contents of a buffer, by |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
296 showing the ``before'' and ``after'' versions of the text. These |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
297 examples show the contents of the buffer in question between two lines |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
298 of dashes containing the buffer name. In addition, @samp{@point{}} |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
299 indicates the location of point. (The symbol for point, of course, is |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
300 not part of the text in the buffer; it indicates the place |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
301 @emph{between} two characters where point is currently located.) |
6453 | 302 |
303 @example | |
304 ---------- Buffer: foo ---------- | |
305 This is the @point{}contents of foo. | |
306 ---------- Buffer: foo ---------- | |
307 | |
308 (insert "changed ") | |
309 @result{} nil | |
310 ---------- Buffer: foo ---------- | |
311 This is the changed @point{}contents of foo. | |
312 ---------- Buffer: foo ---------- | |
313 @end example | |
314 | |
315 @node Format of Descriptions | |
316 @subsection Format of Descriptions | |
317 @cindex description format | |
318 | |
319 Functions, variables, macros, commands, user options, and special | |
320 forms are described in this manual in a uniform format. The first | |
321 line of a description contains the name of the item followed by its | |
322 arguments, if any. | |
27193 | 323 @ifnottex |
6453 | 324 The category---function, variable, or whatever---appears at the |
325 beginning of the line. | |
27193 | 326 @end ifnottex |
6453 | 327 @iftex |
328 The category---function, variable, or whatever---is printed next to the | |
329 right margin. | |
330 @end iftex | |
331 The description follows on succeeding lines, sometimes with examples. | |
332 | |
333 @menu | |
334 * A Sample Function Description:: A description of an imaginary | |
335 function, @code{foo}. | |
336 * A Sample Variable Description:: A description of an imaginary | |
337 variable, | |
338 @code{electric-future-map}. | |
339 @end menu | |
340 | |
341 @node A Sample Function Description | |
342 @subsubsection A Sample Function Description | |
343 @cindex function descriptions | |
344 @cindex command descriptions | |
345 @cindex macro descriptions | |
346 @cindex special form descriptions | |
347 | |
348 In a function description, the name of the function being described | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
349 appears first. It is followed on the same line by a list of argument |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
350 names. These names are also used in the body of the description, to |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
351 stand for the values of the arguments. |
6453 | 352 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
353 The appearance of the keyword @code{&optional} in the argument list |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
354 indicates that the subsequent arguments may be omitted (omitted |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
355 arguments default to @code{nil}). Do not write @code{&optional} when |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
356 you call the function. |
6453 | 357 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
358 The keyword @code{&rest} (which must be followed by a single argument |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
359 name) indicates that any number of arguments can follow. The single |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
360 following argument name will have a value, as a variable, which is a |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
361 list of all these remaining arguments. Do not write @code{&rest} when |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
362 you call the function. |
6453 | 363 |
364 Here is a description of an imaginary function @code{foo}: | |
365 | |
366 @defun foo integer1 &optional integer2 &rest integers | |
367 The function @code{foo} subtracts @var{integer1} from @var{integer2}, | |
368 then adds all the rest of the arguments to the result. If @var{integer2} | |
369 is not supplied, then the number 19 is used by default. | |
370 | |
371 @example | |
372 (foo 1 5 3 9) | |
373 @result{} 16 | |
374 (foo 5) | |
375 @result{} 14 | |
376 @end example | |
377 | |
22274
f0cd03a7dac9
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
378 @need 1500 |
6453 | 379 More generally, |
380 | |
381 @example | |
382 (foo @var{w} @var{x} @var{y}@dots{}) | |
383 @equiv{} | |
384 (+ (- @var{x} @var{w}) @var{y}@dots{}) | |
385 @end example | |
386 @end defun | |
387 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
388 Any argument whose name contains the name of a type (e.g., |
6453 | 389 @var{integer}, @var{integer1} or @var{buffer}) is expected to be of that |
390 type. A plural of a type (such as @var{buffers}) often means a list of | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
391 objects of that type. Arguments named @var{object} may be of any type. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
392 (@xref{Lisp Data Types}, for a list of Emacs object types.) Arguments |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
393 with other sorts of names (e.g., @var{new-file}) are discussed |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
394 specifically in the description of the function. In some sections, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
395 features common to the arguments of several functions are described at |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
396 the beginning. |
6453 | 397 |
398 @xref{Lambda Expressions}, for a more complete description of optional | |
399 and rest arguments. | |
400 | |
401 Command, macro, and special form descriptions have the same format, | |
402 but the word `Function' is replaced by `Command', `Macro', or `Special | |
403 Form', respectively. Commands are simply functions that may be called | |
404 interactively; macros process their arguments differently from functions | |
405 (the arguments are not evaluated), but are presented the same way. | |
406 | |
407 Special form descriptions use a more complex notation to specify | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
408 optional and repeated arguments because they can break the argument |
6453 | 409 list down into separate arguments in more complicated ways. |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
410 @samp{@r{[}@var{optional-arg}@r{]}} means that @var{optional-arg} is |
6453 | 411 optional and @samp{@var{repeated-args}@dots{}} stands for zero or more |
412 arguments. Parentheses are used when several arguments are grouped into | |
413 additional levels of list structure. Here is an example: | |
414 | |
415 @defspec count-loop (@var{var} [@var{from} @var{to} [@var{inc}]]) @var{body}@dots{} | |
416 This imaginary special form implements a loop that executes the | |
417 @var{body} forms and then increments the variable @var{var} on each | |
418 iteration. On the first iteration, the variable has the value | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
419 @var{from}; on subsequent iterations, it is incremented by one (or by |
6453 | 420 @var{inc} if that is given). The loop exits before executing @var{body} |
421 if @var{var} equals @var{to}. Here is an example: | |
422 | |
423 @example | |
424 (count-loop (i 0 10) | |
425 (prin1 i) (princ " ") | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
426 (prin1 (aref vector i)) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
427 (terpri)) |
6453 | 428 @end example |
429 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
430 If @var{from} and @var{to} are omitted, @var{var} is bound to |
6453 | 431 @code{nil} before the loop begins, and the loop exits if @var{var} is |
432 non-@code{nil} at the beginning of an iteration. Here is an example: | |
433 | |
434 @example | |
435 (count-loop (done) | |
436 (if (pending) | |
437 (fixit) | |
438 (setq done t))) | |
439 @end example | |
440 | |
441 In this special form, the arguments @var{from} and @var{to} are | |
442 optional, but must both be present or both absent. If they are present, | |
443 @var{inc} may optionally be specified as well. These arguments are | |
444 grouped with the argument @var{var} into a list, to distinguish them | |
445 from @var{body}, which includes all remaining elements of the form. | |
446 @end defspec | |
447 | |
448 @node A Sample Variable Description | |
449 @subsubsection A Sample Variable Description | |
450 @cindex variable descriptions | |
451 @cindex option descriptions | |
452 | |
453 A @dfn{variable} is a name that can hold a value. Although any | |
454 variable can be set by the user, certain variables that exist | |
455 specifically so that users can change them are called @dfn{user | |
456 options}. Ordinary variables and user options are described using a | |
457 format like that for functions except that there are no arguments. | |
458 | |
459 Here is a description of the imaginary @code{electric-future-map} | |
460 variable.@refill | |
461 | |
462 @defvar electric-future-map | |
463 The value of this variable is a full keymap used by Electric Command | |
464 Future mode. The functions in this map allow you to edit commands you | |
465 have not yet thought about executing. | |
466 @end defvar | |
467 | |
468 User option descriptions have the same format, but `Variable' is | |
469 replaced by `User Option'. | |
470 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
471 @node Version Info |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
472 @section Version Information |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
473 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
474 These facilities provide information about which version of Emacs is |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
475 in use. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
476 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
477 @deffn Command emacs-version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
478 This function returns a string describing the version of Emacs that is |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
479 running. It is useful to include this string in bug reports. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
480 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
481 @smallexample |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
482 @group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
483 (emacs-version) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
484 @result{} "GNU Emacs 20.3.5 (i486-pc-linux-gnulibc1, X toolkit) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
485 of Sat Feb 14 1998 on psilocin.gnu.org" |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
486 @end group |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
487 @end smallexample |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
488 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
489 Called interactively, the function prints the same information in the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
490 echo area. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
491 @end deffn |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
492 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
493 @defvar emacs-build-time |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
494 The value of this variable indicates the time at which Emacs was built |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
495 at the local site. It is a list of three integers, like the value |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
496 of @code{current-time} (@pxref{Time of Day}). |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
497 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
498 @example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
499 @group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
500 emacs-build-time |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
501 @result{} (13623 62065 344633) |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
502 @end group |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
503 @end example |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
504 @end defvar |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
505 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
506 @defvar emacs-version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
507 The value of this variable is the version of Emacs being run. It is a |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
508 string such as @code{"20.3.1"}. The last number in this string is not |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
509 really part of the Emacs release version number; it is incremented each |
36986 | 510 time you build Emacs in any given directory. A value with four numeric |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
511 components, such as @code{"20.3.9.1"}, indicates an unreleased test |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22366
diff
changeset
|
512 version. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
513 @end defvar |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
514 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
515 The following two variables have existed since Emacs version 19.23: |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
516 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
517 @defvar emacs-major-version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
518 The major version number of Emacs, as an integer. For Emacs version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
519 20.3, the value is 20. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
520 @end defvar |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
521 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
522 @defvar emacs-minor-version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
523 The minor version number of Emacs, as an integer. For Emacs version |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
524 20.3, the value is 3. |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
525 @end defvar |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
526 |
6453 | 527 @node Acknowledgements |
528 @section Acknowledgements | |
529 | |
530 This manual was written by Robert Krawitz, Bil Lewis, Dan LaLiberte, | |
531 Richard M. Stallman and Chris Welty, the volunteers of the GNU manual | |
532 group, in an effort extending over several years. Robert J. Chassell | |
533 helped to review and edit the manual, with the support of the Defense | |
534 Advanced Research Projects Agency, ARPA Order 6082, arranged by Warren | |
25875 | 535 A. Hunt, Jr.@: of Computational Logic, Inc. |
6453 | 536 |
537 Corrections were supplied by Karl Berry, Jim Blandy, Bard Bloom, | |
538 Stephane Boucher, David Boyes, Alan Carroll, Richard Davis, Lawrence | |
539 R. Dodd, Peter Doornbosch, David A. Duff, Chris Eich, Beverly | |
540 Erlebacher, David Eckelkamp, Ralf Fassel, Eirik Fuller, Stephen Gildea, | |
541 Bob Glickstein, Eric Hanchrow, George Hartzell, Nathan Hess, Masayuki | |
542 Ida, Dan Jacobson, Jak Kirman, Bob Knighten, Frederick M. Korz, Joe | |
543 Lammens, Glenn M. Lewis, K. Richard Magill, Brian Marick, Roland | |
544 McGrath, Skip Montanaro, John Gardiner Myers, Thomas A. Peterson, | |
545 Francesco Potorti, Friedrich Pukelsheim, Arnold D. Robbins, Raul | |
25875 | 546 Rockwell, Per Starb@"ack, Shinichirou Sugou, Kimmo Suominen, Edward Tharp, |
6453 | 547 Bill Trost, Rickard Westman, Jean White, Matthew Wilding, Carl Witty, |
548 Dale Worley, Rusty Wright, and David D. Zuhn. |