data

Functions
false &rest arguments
nothing &rest arguments
true &rest arguments
Macros
defconst name value &optional doc
defsubst name arg-list &body body
defconst  name value &optional doc  [Macro]
Define a constant variable.

This is like `defconstant' except that the initially set value
is reused when the `defconst' form is evaluated again.
defsubst  name arg-list &body body  [Macro]
Define an inline function.

This is like `defun' except that the function is globally marked
for inline expansion by the compiler.
false  &rest arguments  [Function]
Ignore all arguments and return nil.
true  &rest arguments  [Function]
Ignore all arguments and return t.
nothing  &rest arguments  [Function]
Ignore all arguments and return no values.