comparison man/lispref/lispref.texi @ 2492:6780963faf78

[xemacs-hg @ 2005-01-21 09:43:09 by aidan] Rename "functions" node to "functions and commands," move the definition of a command further up the list of types of functions, give information on a trivial (interactive) declaration, and cross-reference to the key binding detail. Cf. 87vf9wgd08.fsf@tleepslib.sk.tsukuba.ac.jp (comp.emacs.xemacs, 2005-01-18).
author aidan
date Fri, 21 Jan 2005 09:43:12 +0000
parents c91543697b09
children 9fa10603c898
comparison
equal deleted inserted replaced
2491:876c400e58d7 2492:6780963faf78
142 * Symbols:: Symbols represent names, uniquely. 142 * Symbols:: Symbols represent names, uniquely.
143 143
144 * Evaluation:: How Lisp expressions are evaluated. 144 * Evaluation:: How Lisp expressions are evaluated.
145 * Control Structures:: Conditionals, loops, nonlocal exits. 145 * Control Structures:: Conditionals, loops, nonlocal exits.
146 * Variables:: Using symbols in programs to stand for values. 146 * Variables:: Using symbols in programs to stand for values.
147 * Functions:: A function is a Lisp program 147
148 that can be invoked from other functions. 148 * Functions and Commands:: A function is a Lisp program that can be
149 invoked from other functions.
150
149 * Macros:: Macros are a way to extend the Lisp language. 151 * Macros:: Macros are a way to extend the Lisp language.
150 * Customization:: Writing customization declarations. 152 * Customization:: Writing customization declarations.
151 153
152 * Loading:: Reading files of Lisp code into Lisp. 154 * Loading:: Reading files of Lisp code into Lisp.
153 * Byte Compilation:: Compilation makes programs run faster. 155 * Byte Compilation:: Compilation makes programs run faster.