[Top] [Contents] [Index] [ ? ]

Footnotes

(1)

There is no strictly equivalent way to add an element to the end of a list. You can use (append listname (list newelt)), which creates a whole new list by copying listname and adding newelt to its end. Or you can use (nconc listname (list newelt)), which modifies listname by following all the CDRs and then replacing the terminating nil. Compare this to adding an element to the beginning of a list with cons, which neither copies nor modifies the list.

(2)

This usage of "key" is not related to the term "key sequence"; it means a value used to look up an item in a table. In this case, the table is the alist, and the alist associations are the items.

(3)

This definition of "environment" is specifically not intended to include all the data that can affect the result of a program.

(4)

They may also be declared equivalently in `cus-start.el'.

(5)

Button-down is the conservative antithesis of drag.

(6)

It is required for menus which do not use a toolkit, e.g. under MS-DOS.

(7)

An RFC, an acronym for Request for Comments, is a numbered Internet informational document describing a standard. RFCs are usually written by technical experts acting on their own initiative, and are traditionally written in a pragmatic, experience-driven manner.

(8)

For an explanation of what is an RFC, see the footnote in 32.23 Base 64 Encoding.

(9)

On other systems, Emacs uses a Lisp emulation of ls; see 25.9 Contents of Directories.

(10)

The benefits of a Common Lisp-style package system are considered not to outweigh the costs.

(11)

Consider that the package may be loaded arbitrarily by Custom for instance.



This document was generated on May 2, 2002 using texi2html