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