2007-09-06 04:25:08 +00:00
|
|
|
@c This is part of the GNU Emacs Lisp Reference Manual.
|
2025-01-01 07:39:17 +00:00
|
|
|
@c Copyright (C) 1990--1994, 2001--2025 Free Software Foundation, Inc.
|
2007-09-06 04:25:08 +00:00
|
|
|
@c See the file elisp.texi for copying conditions.
|
|
|
|
|
2012-05-26 18:34:14 -07:00
|
|
|
@node Introduction
|
2007-09-06 04:25:08 +00:00
|
|
|
@chapter Introduction
|
|
|
|
|
|
|
|
Most of the GNU Emacs text editor is written in the programming
|
|
|
|
language called Emacs Lisp. You can write new code in Emacs Lisp and
|
|
|
|
install it as an extension to the editor. However, Emacs Lisp is more
|
2015-09-15 08:46:48 -07:00
|
|
|
than a mere extension language; it is a full computer programming
|
2007-09-06 04:25:08 +00:00
|
|
|
language in its own right. You can use it as you would any other
|
|
|
|
programming language.
|
|
|
|
|
|
|
|
Because Emacs Lisp is designed for use in an editor, it has special
|
|
|
|
features for scanning and parsing text as well as features for handling
|
|
|
|
files, buffers, displays, subprocesses, and so on. Emacs Lisp is
|
|
|
|
closely integrated with the editing facilities; thus, editing commands
|
|
|
|
are functions that can also conveniently be called from Lisp programs,
|
|
|
|
and parameters for customization are ordinary Lisp variables.
|
|
|
|
|
|
|
|
This manual attempts to be a full description of Emacs Lisp. For a
|
|
|
|
beginner's introduction to Emacs Lisp, see @cite{An Introduction to
|
|
|
|
Emacs Lisp Programming}, by Bob Chassell, also published by the Free
|
|
|
|
Software Foundation. This manual presumes considerable familiarity with
|
|
|
|
the use of Emacs for editing; see @cite{The GNU Emacs Manual} for this
|
|
|
|
basic information.
|
|
|
|
|
|
|
|
Generally speaking, the earlier chapters describe features of Emacs
|
|
|
|
Lisp that have counterparts in many programming languages, and later
|
|
|
|
chapters describe features that are peculiar to Emacs Lisp or relate
|
|
|
|
specifically to editing.
|
|
|
|
|
2012-05-01 00:38:15 -07:00
|
|
|
This is
|
|
|
|
@iftex
|
2022-11-12 06:35:21 +01:00
|
|
|
@ifset VERSION
|
2012-05-01 00:38:15 -07:00
|
|
|
edition @value{VERSION} of
|
2022-11-12 06:35:21 +01:00
|
|
|
@end ifset
|
2012-05-01 00:38:15 -07:00
|
|
|
@end iftex
|
|
|
|
the @cite{GNU Emacs Lisp Reference Manual},
|
|
|
|
corresponding to Emacs version @value{EMACSVER}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@menu
|
|
|
|
* Caveats:: Flaws and a request for help.
|
|
|
|
* Lisp History:: Emacs Lisp is descended from Maclisp.
|
|
|
|
* Conventions:: How the manual is formatted.
|
|
|
|
* Version Info:: Which Emacs version is running?
|
2012-07-24 22:48:19 -07:00
|
|
|
* Acknowledgments:: The authors, editors, and sponsors of this manual.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Caveats
|
|
|
|
@section Caveats
|
|
|
|
@cindex bugs in this manual
|
|
|
|
|
|
|
|
This manual has gone through numerous drafts. It is nearly complete
|
|
|
|
but not flawless. There are a few topics that are not covered, either
|
|
|
|
because we consider them secondary (such as most of the individual
|
|
|
|
modes) or because they are yet to be written. Because we are not able
|
|
|
|
to deal with them completely, we have left out several parts
|
2008-07-31 05:33:56 +00:00
|
|
|
intentionally.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
The manual should be fully correct in what it does cover, and it is
|
|
|
|
therefore open to criticism on anything it says---from specific examples
|
|
|
|
and descriptive text, to the ordering of chapters and sections. If
|
|
|
|
something is confusing, or you find that you have to look at the sources
|
|
|
|
or experiment to learn something not covered in the manual, then perhaps
|
|
|
|
the manual should be fixed. Please let us know.
|
|
|
|
|
|
|
|
@iftex
|
|
|
|
As you use this manual, we ask that you mark pages with corrections so
|
|
|
|
you can later look them up and send them to us. If you think of a simple,
|
|
|
|
real-life example for a function or group of functions, please make an
|
|
|
|
effort to write it up and send it in. Please reference any comments to
|
|
|
|
the chapter name, section name, and function name, as appropriate, since
|
|
|
|
page numbers and chapter and section numbers will change and we may have
|
2012-05-05 12:32:58 +08:00
|
|
|
trouble finding the text you are talking about. Also state the version
|
2007-09-06 04:25:08 +00:00
|
|
|
of the edition you are criticizing.
|
|
|
|
@end iftex
|
|
|
|
@ifnottex
|
|
|
|
|
|
|
|
As you use this manual, we ask that you send corrections as soon as you
|
|
|
|
find them. If you think of a simple, real life example for a function
|
|
|
|
or group of functions, please make an effort to write it up and send it
|
|
|
|
in. Please reference any comments to the node name and function or
|
|
|
|
variable name, as appropriate. Also state the number of the edition
|
|
|
|
you are criticizing.
|
|
|
|
@end ifnottex
|
|
|
|
|
|
|
|
@cindex bugs
|
|
|
|
@cindex suggestions
|
2024-02-15 00:39:00 +01:00
|
|
|
Please send comments and corrections using @kbd{M-x report-emacs-bug}.
|
|
|
|
For more details, @xref{Bugs,, Reporting Bugs, emacs, The GNU Emacs
|
|
|
|
Manual}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@node Lisp History
|
|
|
|
@section Lisp History
|
|
|
|
@cindex Lisp history
|
|
|
|
|
|
|
|
Lisp (LISt Processing language) was first developed in the late 1950s
|
|
|
|
at the Massachusetts Institute of Technology for research in artificial
|
|
|
|
intelligence. The great power of the Lisp language makes it ideal
|
|
|
|
for other purposes as well, such as writing editing commands.
|
|
|
|
|
|
|
|
@cindex Maclisp
|
|
|
|
@cindex Common Lisp
|
|
|
|
Dozens of Lisp implementations have been built over the years, each
|
|
|
|
with its own idiosyncrasies. Many of them were inspired by Maclisp,
|
2012-12-05 14:27:56 -08:00
|
|
|
which was written in the 1960s at MIT's Project MAC@. Eventually the
|
2011-11-14 22:00:24 +01:00
|
|
|
implementers of the descendants of Maclisp came together and developed a
|
2007-09-06 04:25:08 +00:00
|
|
|
standard for Lisp systems, called Common Lisp. In the meantime, Gerry
|
|
|
|
Sussman and Guy Steele at MIT developed a simplified but very powerful
|
|
|
|
dialect of Lisp, called Scheme.
|
|
|
|
|
|
|
|
GNU Emacs Lisp is largely inspired by Maclisp, and a little by Common
|
|
|
|
Lisp. If you know Common Lisp, you will notice many similarities.
|
|
|
|
However, many features of Common Lisp have been omitted or
|
|
|
|
simplified in order to reduce the memory requirements of GNU Emacs.
|
|
|
|
Sometimes the simplifications are so drastic that a Common Lisp user
|
|
|
|
might be very confused. We will occasionally point out how GNU Emacs
|
|
|
|
Lisp differs from Common Lisp. If you don't know Common Lisp, don't
|
|
|
|
worry about it; this manual is self-contained.
|
|
|
|
|
|
|
|
@pindex cl
|
|
|
|
A certain amount of Common Lisp emulation is available via the
|
2012-10-21 19:22:27 -07:00
|
|
|
@file{cl-lib} library. @xref{Top,, Overview, cl, Common Lisp Extensions}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Emacs Lisp is not at all influenced by Scheme; but the GNU project has
|
2012-05-05 12:32:58 +08:00
|
|
|
an implementation of Scheme, called Guile. We use it in all new GNU
|
2007-09-06 04:25:08 +00:00
|
|
|
software that calls for extensibility.
|
|
|
|
|
|
|
|
@node Conventions
|
|
|
|
@section Conventions
|
|
|
|
|
|
|
|
This section explains the notational conventions that are used in this
|
|
|
|
manual. You may want to skip this section and refer back to it later.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* Some Terms:: Explanation of terms we use in this manual.
|
|
|
|
* nil and t:: How the symbols @code{nil} and @code{t} are used.
|
|
|
|
* Evaluation Notation:: The format we use for examples of evaluation.
|
|
|
|
* Printing Notation:: The format we use when examples print text.
|
|
|
|
* Error Messages:: The format we use for examples of errors.
|
|
|
|
* Buffer Text Notation:: The format we use for buffer contents in examples.
|
|
|
|
* Format of Descriptions:: Notation for describing functions, variables, etc.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node Some Terms
|
|
|
|
@subsection Some Terms
|
|
|
|
|
|
|
|
Throughout this manual, the phrases ``the Lisp reader'' and ``the Lisp
|
|
|
|
printer'' refer to those routines in Lisp that convert textual
|
|
|
|
representations of Lisp objects into actual Lisp objects, and vice
|
|
|
|
versa. @xref{Printed Representation}, for more details. You, the
|
2015-09-15 08:46:48 -07:00
|
|
|
person reading this manual, are thought of as the programmer and are
|
|
|
|
addressed as ``you''. The user is the person who uses Lisp
|
2007-09-06 04:25:08 +00:00
|
|
|
programs, including those you write.
|
|
|
|
|
2008-04-07 04:46:48 +00:00
|
|
|
@cindex typographic conventions
|
2007-09-06 04:25:08 +00:00
|
|
|
Examples of Lisp code are formatted like this: @code{(list 1 2 3)}.
|
|
|
|
Names that represent metasyntactic variables, or arguments to a function
|
|
|
|
being described, are formatted like this: @var{first-number}.
|
|
|
|
|
|
|
|
@node nil and t
|
|
|
|
@subsection @code{nil} and @code{t}
|
|
|
|
@cindex truth value
|
|
|
|
@cindex boolean
|
|
|
|
|
|
|
|
@cindex @code{nil}
|
|
|
|
@cindex false
|
2012-01-22 00:04:55 +08:00
|
|
|
In Emacs Lisp, the symbol @code{nil} has three separate meanings: it
|
2007-09-06 04:25:08 +00:00
|
|
|
is a symbol with the name @samp{nil}; it is the logical truth value
|
|
|
|
@var{false}; and it is the empty list---the list of zero elements.
|
|
|
|
When used as a variable, @code{nil} always has the value @code{nil}.
|
|
|
|
|
|
|
|
As far as the Lisp reader is concerned, @samp{()} and @samp{nil} are
|
|
|
|
identical: they stand for the same object, the symbol @code{nil}. The
|
|
|
|
different ways of writing the symbol are intended entirely for human
|
|
|
|
readers. After the Lisp reader has read either @samp{()} or @samp{nil},
|
|
|
|
there is no way to determine which representation was actually written
|
|
|
|
by the programmer.
|
|
|
|
|
|
|
|
In this manual, we write @code{()} when we wish to emphasize that it
|
|
|
|
means the empty list, and we write @code{nil} when we wish to emphasize
|
|
|
|
that it means the truth value @var{false}. That is a good convention to use
|
|
|
|
in Lisp programs also.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(cons 'foo ()) ; @r{Emphasize the empty list}
|
|
|
|
(setq foo-flag nil) ; @r{Emphasize the truth value @var{false}}
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@cindex @code{t}
|
|
|
|
@cindex true
|
|
|
|
In contexts where a truth value is expected, any non-@code{nil} value
|
|
|
|
is considered to be @var{true}. However, @code{t} is the preferred way
|
|
|
|
to represent the truth value @var{true}. When you need to choose a
|
2016-01-23 11:55:31 -08:00
|
|
|
value that represents @var{true}, and there is no other basis for
|
2007-09-06 04:25:08 +00:00
|
|
|
choosing, use @code{t}. The symbol @code{t} always has the value
|
|
|
|
@code{t}.
|
|
|
|
|
|
|
|
In Emacs Lisp, @code{nil} and @code{t} are special symbols that always
|
|
|
|
evaluate to themselves. This is so that you do not need to quote them
|
|
|
|
to use them as constants in a program. An attempt to change their
|
|
|
|
values results in a @code{setting-constant} error. @xref{Constant
|
|
|
|
Variables}.
|
|
|
|
|
|
|
|
@defun booleanp object
|
2008-11-25 03:52:14 +00:00
|
|
|
Return non-@code{nil} if @var{object} is one of the two canonical
|
|
|
|
boolean values: @code{t} or @code{nil}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defun
|
|
|
|
|
|
|
|
@node Evaluation Notation
|
|
|
|
@subsection Evaluation Notation
|
|
|
|
@cindex evaluation notation
|
|
|
|
@cindex documentation notation
|
|
|
|
@cindex notation
|
|
|
|
|
|
|
|
A Lisp expression that you can evaluate is called a @dfn{form}.
|
|
|
|
Evaluating a form always produces a result, which is a Lisp object. In
|
|
|
|
the examples in this manual, this is indicated with @samp{@result{}}:
|
|
|
|
|
|
|
|
@example
|
|
|
|
(car '(1 2))
|
|
|
|
@result{} 1
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@noindent
|
2012-04-25 20:31:47 -04:00
|
|
|
You can read this as ``@code{(car '(1 2))} evaluates to 1''.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
When a form is a macro call, it expands into a new form for Lisp to
|
|
|
|
evaluate. We show the result of the expansion with
|
|
|
|
@samp{@expansion{}}. We may or may not show the result of the
|
|
|
|
evaluation of the expanded form.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(third '(a b c))
|
|
|
|
@expansion{} (car (cdr (cdr '(a b c))))
|
|
|
|
@result{} c
|
|
|
|
@end example
|
|
|
|
|
2012-07-05 21:47:46 -04:00
|
|
|
To help describe one form, we sometimes show another form that
|
2007-09-06 04:25:08 +00:00
|
|
|
produces identical results. The exact equivalence of two forms is
|
|
|
|
indicated with @samp{@equiv{}}.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(make-sparse-keymap) @equiv{} (list 'keymap)
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@node Printing Notation
|
|
|
|
@subsection Printing Notation
|
|
|
|
@cindex printing notation
|
|
|
|
|
|
|
|
Many of the examples in this manual print text when they are
|
|
|
|
evaluated. If you execute example code in a Lisp Interaction buffer
|
2020-09-20 17:33:55 +03:00
|
|
|
(such as the buffer @file{*scratch*}) by typing @kbd{C-j} after the
|
|
|
|
closing parenthesis of the example, the printed text is inserted into
|
2007-09-06 04:25:08 +00:00
|
|
|
the buffer. If you execute the example by other means (such as by
|
|
|
|
evaluating the function @code{eval-region}), the printed text is
|
|
|
|
displayed in the echo area.
|
|
|
|
|
|
|
|
Examples in this manual indicate printed text with @samp{@print{}},
|
|
|
|
irrespective of where that text goes. The value returned by
|
2012-05-05 12:32:58 +08:00
|
|
|
evaluating the form follows on a separate line with
|
2007-09-06 04:25:08 +00:00
|
|
|
@samp{@result{}}.
|
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
(progn (prin1 'foo) (princ "\n") (prin1 'bar))
|
|
|
|
@print{} foo
|
|
|
|
@print{} bar
|
|
|
|
@result{} bar
|
|
|
|
@end group
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@node Error Messages
|
|
|
|
@subsection Error Messages
|
|
|
|
@cindex error message notation
|
|
|
|
|
|
|
|
Some examples signal errors. This normally displays an error message
|
|
|
|
in the echo area. We show the error message on a line starting with
|
|
|
|
@samp{@error{}}. Note that @samp{@error{}} itself does not appear in
|
|
|
|
the echo area.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(+ 23 'x)
|
|
|
|
@error{} Wrong type argument: number-or-marker-p, x
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@node Buffer Text Notation
|
|
|
|
@subsection Buffer Text Notation
|
|
|
|
@cindex buffer text notation
|
|
|
|
|
|
|
|
Some examples describe modifications to the contents of a buffer, by
|
2015-09-15 08:46:48 -07:00
|
|
|
showing the before and after versions of the text. These
|
2007-09-06 04:25:08 +00:00
|
|
|
examples show the contents of the buffer in question between two lines
|
|
|
|
of dashes containing the buffer name. In addition, @samp{@point{}}
|
|
|
|
indicates the location of point. (The symbol for point, of course, is
|
|
|
|
not part of the text in the buffer; it indicates the place
|
|
|
|
@emph{between} two characters where point is currently located.)
|
|
|
|
|
|
|
|
@example
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
This is the @point{}contents of foo.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
|
|
|
|
(insert "changed ")
|
|
|
|
@result{} nil
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
This is the changed @point{}contents of foo.
|
|
|
|
---------- Buffer: foo ----------
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@node Format of Descriptions
|
|
|
|
@subsection Format of Descriptions
|
|
|
|
@cindex description format
|
|
|
|
|
|
|
|
Functions, variables, macros, commands, user options, and special
|
|
|
|
forms are described in this manual in a uniform format. The first
|
|
|
|
line of a description contains the name of the item followed by its
|
|
|
|
arguments, if any.
|
|
|
|
@ifnottex
|
|
|
|
The category---function, variable, or whatever---appears at the
|
|
|
|
beginning of the line.
|
|
|
|
@end ifnottex
|
|
|
|
@iftex
|
|
|
|
The category---function, variable, or whatever---is printed next to the
|
|
|
|
right margin.
|
|
|
|
@end iftex
|
|
|
|
The description follows on succeeding lines, sometimes with examples.
|
|
|
|
|
|
|
|
@menu
|
|
|
|
* A Sample Function Description:: A description of an imaginary
|
|
|
|
function, @code{foo}.
|
|
|
|
* A Sample Variable Description:: A description of an imaginary
|
|
|
|
variable,
|
|
|
|
@code{electric-future-map}.
|
|
|
|
@end menu
|
|
|
|
|
|
|
|
@node A Sample Function Description
|
|
|
|
@subsubsection A Sample Function Description
|
|
|
|
@cindex function descriptions
|
|
|
|
@cindex command descriptions
|
|
|
|
@cindex macro descriptions
|
|
|
|
@cindex special form descriptions
|
|
|
|
|
|
|
|
In a function description, the name of the function being described
|
|
|
|
appears first. It is followed on the same line by a list of argument
|
|
|
|
names. These names are also used in the body of the description, to
|
|
|
|
stand for the values of the arguments.
|
|
|
|
|
|
|
|
The appearance of the keyword @code{&optional} in the argument list
|
|
|
|
indicates that the subsequent arguments may be omitted (omitted
|
|
|
|
arguments default to @code{nil}). Do not write @code{&optional} when
|
|
|
|
you call the function.
|
|
|
|
|
|
|
|
The keyword @code{&rest} (which must be followed by a single
|
2012-07-05 21:47:46 -04:00
|
|
|
argument name) indicates that any number of arguments can follow. The
|
2012-07-04 22:52:00 -04:00
|
|
|
single argument name following @code{&rest} receives, as its
|
2007-09-06 04:25:08 +00:00
|
|
|
value, a list of all the remaining arguments passed to the function.
|
|
|
|
Do not write @code{&rest} when you call the function.
|
|
|
|
|
|
|
|
Here is a description of an imaginary function @code{foo}:
|
|
|
|
|
|
|
|
@defun foo integer1 &optional integer2 &rest integers
|
|
|
|
The function @code{foo} subtracts @var{integer1} from @var{integer2},
|
|
|
|
then adds all the rest of the arguments to the result. If @var{integer2}
|
|
|
|
is not supplied, then the number 19 is used by default.
|
|
|
|
|
|
|
|
@example
|
|
|
|
(foo 1 5 3 9)
|
|
|
|
@result{} 16
|
|
|
|
(foo 5)
|
|
|
|
@result{} 14
|
|
|
|
@end example
|
|
|
|
|
|
|
|
@need 1500
|
|
|
|
More generally,
|
|
|
|
|
|
|
|
@example
|
|
|
|
(foo @var{w} @var{x} @var{y}@dots{})
|
|
|
|
@equiv{}
|
|
|
|
(+ (- @var{x} @var{w}) @var{y}@dots{})
|
|
|
|
@end example
|
|
|
|
@end defun
|
|
|
|
|
2012-07-06 12:25:04 +08:00
|
|
|
By convention, any argument whose name contains the name of a type
|
2012-12-05 14:27:56 -08:00
|
|
|
(e.g., @var{integer}, @var{integer1} or @var{buffer}) is expected to
|
2012-07-06 12:25:04 +08:00
|
|
|
be of that type. A plural of a type (such as @var{buffers}) often
|
|
|
|
means a list of objects of that type. An argument named @var{object}
|
|
|
|
may be of any type. (For a list of Emacs object types, @pxref{Lisp
|
|
|
|
Data Types}.) An argument with any other sort of name
|
2012-12-05 14:27:56 -08:00
|
|
|
(e.g., @var{new-file}) is specific to the function; if the function
|
2012-07-06 12:25:04 +08:00
|
|
|
has a documentation string, the type of the argument should be
|
|
|
|
described there (@pxref{Documentation}).
|
|
|
|
|
|
|
|
@xref{Lambda Expressions}, for a more complete description of
|
|
|
|
arguments modified by @code{&optional} and @code{&rest}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Command, macro, and special form descriptions have the same format,
|
2012-07-06 12:25:04 +08:00
|
|
|
but the word @samp{Function} is replaced by @samp{Command},
|
|
|
|
@samp{Macro}, or @samp{Special Form}, respectively. Commands are
|
|
|
|
simply functions that may be called interactively; macros process
|
|
|
|
their arguments differently from functions (the arguments are not
|
|
|
|
evaluated), but are presented the same way.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-01-22 00:04:55 +08:00
|
|
|
The descriptions of macros and special forms use a more complex
|
|
|
|
notation to specify optional and repeated arguments, because they can
|
|
|
|
break the argument list down into separate arguments in more
|
|
|
|
complicated ways. @samp{@r{[}@var{optional-arg}@r{]}} means that
|
|
|
|
@var{optional-arg} is optional and @samp{@var{repeated-args}@dots{}}
|
|
|
|
stands for zero or more arguments. Parentheses are used when several
|
|
|
|
arguments are grouped into additional levels of list structure. Here
|
|
|
|
is an example:
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-12-29 10:23:21 +02:00
|
|
|
@defspec count-loop (var [from to [inc]]) body@dots{}
|
2007-09-06 04:25:08 +00:00
|
|
|
This imaginary special form implements a loop that executes the
|
|
|
|
@var{body} forms and then increments the variable @var{var} on each
|
|
|
|
iteration. On the first iteration, the variable has the value
|
|
|
|
@var{from}; on subsequent iterations, it is incremented by one (or by
|
|
|
|
@var{inc} if that is given). The loop exits before executing @var{body}
|
|
|
|
if @var{var} equals @var{to}. Here is an example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
(count-loop (i 0 10)
|
|
|
|
(prin1 i) (princ " ")
|
|
|
|
(prin1 (aref vector i))
|
|
|
|
(terpri))
|
|
|
|
@end example
|
|
|
|
|
|
|
|
If @var{from} and @var{to} are omitted, @var{var} is bound to
|
|
|
|
@code{nil} before the loop begins, and the loop exits if @var{var} is
|
|
|
|
non-@code{nil} at the beginning of an iteration. Here is an example:
|
|
|
|
|
|
|
|
@example
|
|
|
|
(count-loop (done)
|
|
|
|
(if (pending)
|
|
|
|
(fixit)
|
|
|
|
(setq done t)))
|
|
|
|
@end example
|
|
|
|
|
|
|
|
In this special form, the arguments @var{from} and @var{to} are
|
|
|
|
optional, but must both be present or both absent. If they are present,
|
|
|
|
@var{inc} may optionally be specified as well. These arguments are
|
|
|
|
grouped with the argument @var{var} into a list, to distinguish them
|
|
|
|
from @var{body}, which includes all remaining elements of the form.
|
|
|
|
@end defspec
|
|
|
|
|
|
|
|
@node A Sample Variable Description
|
|
|
|
@subsubsection A Sample Variable Description
|
|
|
|
@cindex variable descriptions
|
|
|
|
@cindex option descriptions
|
|
|
|
|
2012-07-06 12:25:04 +08:00
|
|
|
A @dfn{variable} is a name that can be @dfn{bound} (or @dfn{set}) to
|
|
|
|
an object. The object to which a variable is bound is called a
|
2012-07-06 00:48:10 -07:00
|
|
|
@dfn{value}; we say also that variable holds that value.
|
2012-07-06 12:25:04 +08:00
|
|
|
Although nearly all variables can be set by the user, certain
|
|
|
|
variables exist specifically so that users can change them; these are
|
|
|
|
called @dfn{user options}. Ordinary variables and user options are
|
|
|
|
described using a format like that for functions, except that there
|
|
|
|
are no arguments.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
Here is a description of the imaginary @code{electric-future-map}
|
2013-10-23 13:20:09 -04:00
|
|
|
variable.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@defvar electric-future-map
|
|
|
|
The value of this variable is a full keymap used by Electric Command
|
|
|
|
Future mode. The functions in this map allow you to edit commands you
|
|
|
|
have not yet thought about executing.
|
|
|
|
@end defvar
|
|
|
|
|
2012-07-06 12:25:04 +08:00
|
|
|
User option descriptions have the same format, but @samp{Variable}
|
|
|
|
is replaced by @samp{User Option}.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@node Version Info
|
|
|
|
@section Version Information
|
|
|
|
|
|
|
|
These facilities provide information about which version of Emacs is
|
|
|
|
in use.
|
|
|
|
|
|
|
|
@deffn Command emacs-version &optional here
|
|
|
|
This function returns a string describing the version of Emacs that is
|
|
|
|
running. It is useful to include this string in bug reports.
|
|
|
|
|
|
|
|
@smallexample
|
|
|
|
@group
|
|
|
|
(emacs-version)
|
2017-02-17 20:15:21 -05:00
|
|
|
@result{} "GNU Emacs 26.1 (build 1, x86_64-unknown-linux-gnu,
|
|
|
|
GTK+ Version 3.16) of 2017-06-01"
|
2007-09-06 04:25:08 +00:00
|
|
|
@end group
|
|
|
|
@end smallexample
|
|
|
|
|
|
|
|
If @var{here} is non-@code{nil}, it inserts the text in the buffer
|
2009-02-21 13:45:36 +00:00
|
|
|
before point, and returns @code{nil}. When this function is called
|
|
|
|
interactively, it prints the same information in the echo area, but
|
|
|
|
giving a prefix argument makes @var{here} non-@code{nil}.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end deffn
|
|
|
|
|
|
|
|
@defvar emacs-build-time
|
2012-01-22 00:04:55 +08:00
|
|
|
The value of this variable indicates the time at which Emacs was
|
file-attributes cleanup
Mostly, this replaces magic-number calls like (nth 4 A) with
more-informative calls like (file-attribute-access-time A).
It also fixes some documentation and minor timestamp coding
issues that I noticed while looking into this.
* doc/lispref/files.texi (File Attributes):
* lisp/files.el (file-attribute-size)
(file-attribute-inode-number, file-attribute-device-number):
* src/dired.c (Fdirectory_files_and_attributes)
(Ffile_attributes):
Mention which attributes must be integers, or nonnegative integers,
as opposed to merely being numbers. Remove no-longer-correct
talk about representing large integers as conses of integers.
* doc/lispref/files.texi (Magic File Names):
* doc/misc/gnus.texi (Low-level interface to the spam-stat dictionary):
* lisp/autorevert.el (auto-revert-find-file-function)
(auto-revert-tail-mode, auto-revert-handler):
* lisp/auth-source.el (auth-source-netrc-parse):
* lisp/cedet/ede/files.el (ede--inode-for-dir):
* lisp/cedet/semantic/db-file.el (object-write):
* lisp/cedet/semantic/db-mode.el (semanticdb-kill-hook):
* lisp/cedet/semantic/db.el (semanticdb-needs-refresh-p)
(semanticdb-synchronize):
* lisp/cedet/srecode/table.el (srecode-mode-table-new):
* lisp/desktop.el (desktop-save, desktop-read):
* lisp/dired-aux.el (dired-file-set-difference)
(dired-do-chxxx, dired-do-chmod, dired-copy-file-recursive)
(dired-create-files):
* lisp/dired.el (dired-directory-changed-p, dired-readin):
* lisp/dos-w32.el (w32-direct-print-region-helper):
* lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads)
(autoload-find-destination, update-directory-autoloads):
* lisp/emacs-lisp/shadow.el (load-path-shadows-same-file-or-nonexistent):
* lisp/epg.el (epg--start, epg-wait-for-completion):
* lisp/eshell/em-ls.el (eshell-ls-filetype-p)
(eshell-ls-applicable, eshell-ls-size-string)
(eshell-ls-file, eshell-ls-dir, eshell-ls-files)
(eshell-ls-entries):
* lisp/eshell/em-pred.el (eshell-predicate-alist)
(eshell-pred-file-type, eshell-pred-file-links)
(eshell-pred-file-size):
* lisp/eshell/em-unix.el (eshell-shuffle-files, eshell/cat)
(eshell-du-sum-directory, eshell/du):
* lisp/eshell/esh-util.el (eshell-read-passwd)
(eshell-read-hosts):
* lisp/files.el (remote-file-name-inhibit-cache)
(find-file-noselect, insert-file-1, dir-locals-find-file)
(dir-locals-read-from-dir, backup-buffer)
(file-ownership-preserved-p, copy-directory)
(read-file-modes):
* lisp/find-lisp.el (find-lisp-format):
* lisp/gnus/gnus-agent.el (gnus-agent-unfetch-articles)
(gnus-agent-read-agentview, gnus-agent-expire-group-1)
(gnus-agent-request-article, gnus-agent-regenerate-group)
(gnus-agent-update-files-total-fetched-for)
(gnus-agent-update-view-total-fetched-for):
* lisp/gnus/gnus-cache.el (gnus-cache-read-active)
(gnus-cache-update-file-total-fetched-for)
(gnus-cache-update-overview-total-fetched-for):
* lisp/gnus/gnus-cloud.el (gnus-cloud-file-new-p):
* lisp/gnus/gnus-score.el (gnus-score-score-files):
* lisp/gnus/gnus-start.el (gnus-save-newsrc-file)
(gnus-master-read-slave-newsrc):
* lisp/gnus/gnus-sum.el (gnus-summary-import-article):
* lisp/gnus/gnus-util.el (gnus-file-newer-than)
(gnus-cache-file-contents):
* lisp/gnus/mail-source.el (mail-source-delete-old-incoming)
(mail-source-callback, mail-source-movemail):
* lisp/gnus/nneething.el (nneething-create-mapping)
(nneething-make-head):
* lisp/gnus/nnfolder.el (nnfolder-read-folder):
* lisp/gnus/nnheader.el (nnheader-file-size)
(nnheader-insert-nov-file):
* lisp/gnus/nnmail.el (nnmail-activate):
* lisp/gnus/nnmaildir.el (nnmaildir--group-maxnum)
(nnmaildir--new-number, nnmaildir--update-nov)
(nnmaildir--scan, nnmaildir-request-scan)
(nnmaildir-request-update-info)
(nnmaildir-request-expire-articles):
* lisp/gnus/nnmh.el (nnmh-request-list-1)
(nnmh-request-expire-articles, nnmh-update-gnus-unreads):
* lisp/gnus/nnml.el (nnml-request-expire-articles):
* lisp/gnus/spam-stat.el (spam-stat-save, spam-stat-load)
(spam-stat-process-directory, spam-stat-test-directory):
* lisp/ido.el (ido-directory-too-big-p)
(ido-file-name-all-completions):
* lisp/image-dired.el (image-dired-get-thumbnail-image)
(image-dired-create-thumb-1):
* lisp/info.el (info-insert-file-contents):
* lisp/ls-lisp.el (ls-lisp-insert-directory)
(ls-lisp-handle-switches, ls-lisp-classify-file)
(ls-lisp-format):
* lisp/mail/blessmail.el:
* lisp/mail/feedmail.el (feedmail-default-date-generator)
(feedmail-default-message-id-generator):
* lisp/mail/mailabbrev.el (mail-abbrevs-sync-aliases)
(mail-abbrevs-setup):
* lisp/mail/mspools.el (mspools-size-folder):
* lisp/mail/rmail.el (rmail-insert-inbox-text):
* lisp/mail/sendmail.el (sendmail-sync-aliases):
* lisp/mh-e/mh-alias.el (mh-alias-tstamp):
* lisp/net/ange-ftp.el (ange-ftp-parse-netrc)
(ange-ftp-write-region, ange-ftp-file-newer-than-file-p)
(ange-ftp-cf1):
* lisp/net/eudcb-mab.el (eudc-mab-query-internal):
* lisp/net/eww.el (eww-read-bookmarks):
* lisp/net/netrc.el (netrc-parse):
* lisp/net/newst-backend.el (newsticker--image-get):
* lisp/nxml/rng-loc.el (rng-get-parsed-schema-locating-file):
* lisp/obsolete/fast-lock.el (fast-lock-save-cache):
* lisp/obsolete/vc-arch.el (vc-arch-state)
(vc-arch-diff3-rej-p):
* lisp/org/ob-eval.el (org-babel--shell-command-on-region):
* lisp/org/org-attach.el (org-attach-commit):
* lisp/org/org-macro.el (org-macro-initialize-templates):
* lisp/org/org.el (org-babel-load-file)
(org-file-newer-than-p):
* lisp/org/ox-html.el (org-html-format-spec):
* lisp/org/ox-publish.el (org-publish-find-date)
(org-publish-cache-ctime-of-src):
* lisp/pcmpl-gnu.el (pcomplete/tar):
* lisp/pcmpl-rpm.el (pcmpl-rpm-packages):
* lisp/play/cookie1.el (cookie-snarf):
* lisp/progmodes/cmacexp.el (c-macro-expansion):
* lisp/ps-bdf.el (bdf-file-mod-time):
* lisp/server.el (server-ensure-safe-dir):
* lisp/simple.el (shell-command-on-region):
* lisp/speedbar.el (speedbar-item-info-file-helper)
(speedbar-check-obj-this-line):
* lisp/thumbs.el (thumbs-cleanup-thumbsdir):
* lisp/time.el (display-time-mail-check-directory)
(display-time-file-nonempty-p):
* lisp/url/url-cache.el (url-is-cached):
* lisp/url/url-file.el (url-file-asynch-callback):
* lisp/vc/diff-mode.el (diff-delete-if-empty):
* lisp/vc/pcvs-info.el (cvs-fileinfo-from-entries):
* lisp/vc/vc-bzr.el (vc-bzr-state-heuristic):
* lisp/vc/vc-cvs.el (vc-cvs-checkout-model)
(vc-cvs-state-heuristic, vc-cvs-merge-news)
(vc-cvs-retrieve-tag, vc-cvs-parse-status, vc-cvs-parse-entry):
* lisp/vc/vc-hg.el (vc-hg--slurp-hgignore-1)
(vc-hg--ignore-patterns-valid-p)
(vc-hg--cached-dirstate-search, vc-hg-state-fast):
* lisp/vc/vc-hooks.el (vc-after-save):
* lisp/vc/vc-rcs.el (vc-rcs-workfile-is-newer):
* lisp/vc/vc-svn.el (vc-svn-merge-news, vc-svn-parse-status):
* lisp/vc/vc.el (vc-checkout, vc-checkin, vc-revert-file):
* lisp/xdg.el (xdg-mime-apps):
Prefer (file-attribute-size A) to (nth 7 A), and similarly
for other file attributes accessors.
* doc/lispref/files.texi (File Attributes):
* doc/lispref/intro.texi (Version Info):
* doc/lispref/os.texi (Idle Timers):
* lisp/erc/erc.el (erc-string-to-emacs-time):
* lisp/files.el (file-attribute-access-time)
(file-attribute-modification-time)
(file-attribute-status-change-time):
* lisp/net/tramp-compat.el:
(tramp-compat-file-attribute-modification-time)
(tramp-compat-file-attribute-size):
* src/buffer.c (syms_of_buffer):
* src/editfns.c (Fget_internal_run_time):
* src/fileio.c (Fvisited_file_modtime)
(Fset_visited_file_modtime):
* src/keyboard.c (Fcurrent_idle_time):
* src/process.c (Fprocess_attributes):
Defer implementation details about timestamp format to the
section that talks about timestamp format, to make it easier
to change the documentation later if timestamp formats are
extended.
* lisp/gnus/gnus-util.el (gnus-file-newer-than):
* lisp/speedbar.el (speedbar-check-obj-this-line):
* lisp/vc/vc-rcs.el (vc-rcs-workfile-is-newer):
Prefer time-less-p to doing it by hand.
* lisp/ls-lisp.el (ls-lisp-format): Inode numbers are no longer conses.
* lisp/vc/vc-bzr.el (vc-bzr-state-heuristic):
Use eql, not eq, to compare integers that might be bignums.
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
Prefer float-time to doing time arithmetic by hand.
2018-09-23 18:30:46 -07:00
|
|
|
built. It uses the style of
|
2016-03-02 10:21:45 -08:00
|
|
|
@code{current-time} (@pxref{Time of Day}), or is @code{nil}
|
|
|
|
if the information is not available.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
@example
|
|
|
|
@group
|
|
|
|
emacs-build-time
|
2022-04-28 12:50:39 -07:00
|
|
|
@result{} (25194 55894 8547 617000)
|
2007-09-06 04:25:08 +00:00
|
|
|
@end group
|
|
|
|
@end example
|
2022-04-28 12:50:39 -07:00
|
|
|
(This timestamp is @code{(1651169878008547617 . 1000000000)}
|
|
|
|
if @code{current-time-list} was @code{nil} when Emacs was built.)
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@defvar emacs-version
|
|
|
|
The value of this variable is the version of Emacs being run. It is a
|
2017-02-17 20:15:21 -05:00
|
|
|
string such as @code{"26.1"}. A value with three numeric components,
|
|
|
|
such as @code{"26.0.91"}, indicates an unreleased test version.
|
|
|
|
(Prior to Emacs 26.1, the string includes an extra final component
|
|
|
|
with the integer that is now stored in @code{emacs-build-number};
|
|
|
|
e.g., @code{"25.1.1"}.)
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@defvar emacs-major-version
|
|
|
|
The major version number of Emacs, as an integer. For Emacs version
|
2009-02-21 13:45:36 +00:00
|
|
|
23.1, the value is 23.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@defvar emacs-minor-version
|
|
|
|
The minor version number of Emacs, as an integer. For Emacs version
|
2009-02-21 13:45:36 +00:00
|
|
|
23.1, the value is 1.
|
2007-09-06 04:25:08 +00:00
|
|
|
@end defvar
|
|
|
|
|
2017-02-17 20:15:21 -05:00
|
|
|
@defvar emacs-build-number
|
|
|
|
An integer that increments each time Emacs is built in the same
|
|
|
|
directory (without cleaning). This is only of relevance when
|
|
|
|
developing Emacs.
|
|
|
|
@end defvar
|
|
|
|
|
2018-11-10 16:03:12 +01:00
|
|
|
@defvar emacs-repository-version
|
|
|
|
A string that gives the repository revision from which Emacs was
|
|
|
|
built. If Emacs was built outside revision control, the value is
|
|
|
|
@code{nil}.
|
|
|
|
@end defvar
|
|
|
|
|
|
|
|
@defvar emacs-repository-branch
|
|
|
|
A string that gives the repository branch from which Emacs was built.
|
|
|
|
In the most cases this is @code{"master"}. If Emacs was built outside
|
|
|
|
revision control, the value is @code{nil}.
|
|
|
|
@end defvar
|
|
|
|
|
2012-07-24 22:48:19 -07:00
|
|
|
@node Acknowledgments
|
|
|
|
@section Acknowledgments
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2012-02-25 18:25:07 -08:00
|
|
|
This manual was originally written by Robert Krawitz, Bil Lewis, Dan
|
|
|
|
LaLiberte, Richard@tie{}M. Stallman and Chris Welty, the volunteers of
|
|
|
|
the GNU manual group, in an effort extending over several years.
|
2007-09-06 04:25:08 +00:00
|
|
|
Robert@tie{}J. Chassell helped to review and edit the manual, with the
|
|
|
|
support of the Defense Advanced Research Projects Agency, ARPA Order
|
|
|
|
6082, arranged by Warren@tie{}A. Hunt, Jr.@: of Computational Logic,
|
2012-02-25 18:25:07 -08:00
|
|
|
Inc. Additional sections have since been written by Miles Bader, Lars
|
|
|
|
Brinkhoff, Chong Yidong, Kenichi Handa, Lute Kamstra, Juri Linkov,
|
|
|
|
Glenn Morris, Thien-Thi Nguyen, Dan Nicolaescu, Martin Rudalics, Kim
|
|
|
|
F. Storm, Luc Teirlinck, and Eli Zaretskii, and others.
|
2009-02-21 13:45:36 +00:00
|
|
|
|
|
|
|
Corrections were supplied by Drew Adams, Juanma Barranquero, Karl
|
|
|
|
Berry, Jim Blandy, Bard Bloom, Stephane Boucher, David Boyes, Alan
|
|
|
|
Carroll, Richard Davis, Lawrence R. Dodd, Peter Doornbosch, David
|
|
|
|
A. Duff, Chris Eich, Beverly Erlebacher, David Eckelkamp, Ralf Fassel,
|
|
|
|
Eirik Fuller, Stephen Gildea, Bob Glickstein, Eric Hanchrow, Jesper
|
|
|
|
Harder, George Hartzell, Nathan Hess, Masayuki Ida, Dan Jacobson, Jak
|
|
|
|
Kirman, Bob Knighten, Frederick M. Korz, Joe Lammens, Glenn M. Lewis,
|
|
|
|
K. Richard Magill, Brian Marick, Roland McGrath, Stefan Monnier, Skip
|
2024-07-26 14:11:17 +03:00
|
|
|
Montanaro, John Gardiner Myers, Thomas A. Peterson, Francesco Potort@`i,
|
2009-02-21 13:45:36 +00:00
|
|
|
Friedrich Pukelsheim, Arnold D. Robbins, Raul Rockwell, Jason Rumney,
|
2024-07-26 14:11:17 +03:00
|
|
|
Per Starb@"ack, Shinichirou Sugou, Kimmo Suominen, Edward Tharp, Bill
|
2009-02-21 13:45:36 +00:00
|
|
|
Trost, Rickard Westman, Jean White, Eduard Wiebe, Matthew Wilding,
|
|
|
|
Carl Witty, Dale Worley, Rusty Wright, and David D. Zuhn.
|
2012-02-25 18:25:07 -08:00
|
|
|
|
|
|
|
For a more complete list of contributors, please see the relevant
|
2014-11-19 11:29:40 -08:00
|
|
|
change log entries in the Emacs source repository.
|