Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / lang / elisp-manual / DESCR
blob18dc500b3909cfc2feda9e6f6e6069e69668798a
1   Most of the GNU Emacs text editor is written in the programming
2 language called Emacs Lisp.  You can write new code in Emacs Lisp and
3 install it as an extension to the editor.  However, Emacs Lisp is more
4 than a mere ``extension language''; it is a full computer programming
5 language in its own right.  You can use it as you would any other
6 programming language.
8   Because Emacs Lisp is designed for use in an editor, it has special
9 features for scanning and parsing text as well as features for handling
10 files, buffers, displays, subprocesses, and so on.  Emacs Lisp is
11 closely integrated with the editing facilities; thus, editing commands
12 are functions that can also conveniently be called from Lisp programs,
13 and parameters for customization are ordinary Lisp variables.
15   This manual attempts to be a full description of Emacs Lisp.  For a
16 beginner's introduction to Emacs Lisp, see ``An Introduction to
17 Emacs Lisp Programming,'' by Bob Chassell, also published by the Free
18 Software Foundation.  This manual presumes considerable familiarity with
19 the use of Emacs for editing; see ``The GNU Emacs Manual'' for this
20 basic information.
22   Generally speaking, the earlier chapters describe features of Emacs
23 Lisp that have counterparts in many programming languages, and later
24 chapters describe features that are peculiar to Emacs Lisp or relate
25 specifically to editing.