All Manuals > LispWorks User Guide and Reference Manual > 30 The DSPEC Package

NextPrevUpTopContentsIndex

*active-finders*

Variable
Summary

Controls how source finding operates.

Package

dspec

Initial Value

(:internal)

Description

The *active-finders* variable controls how the functions find-name-locations and find-dspec-locations operate. This in turn controls source the finding commands in the LispWorks IDE.You can switch between different sources of location information by setting this variable.

The legal values for the elements of *active-finders* are:

:internal

The internal database of definitions performed in this image.

:tags

Prompt for a tags file, when first used.

pathname

Either a tags file or a tags database.

A tags database is a fasl file generated by save-tags-database.

The order of this list determines the order that the results from the finders are combined in -- you would usually want :internal to be the first item on this list, as it contains the up-to-date information about the state of the image. More than one pathname is allowed.

See also

discard-source-info
find-dspec-locations
find-name-locations
save-tags-database


LispWorks User Guide and Reference Manual - 21 Dec 2011

NextPrevUpTopContentsIndex