"Haris Bogdanovich" <
fbogd...@xnet.hr> writes:
> How can I make a function externa to a package
> so it can be called from outside a package ?
Functions are not made external to a package. A symbol naming a function
can be made an external symbol of a package. Whether or not a symbol is
external is a hint about whether "outsiders" should refer to it. It's
more of a "keep off the grass" sign than a barbed-wire fence.
You can make the symbol naming a function an external symbol by adding
it to the :export clause of the package's DEFPACKAGE form, or by calling
EXPORT some time after the package is already defined. I prefer to do
the former.
Zach