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

NextPrevUpTopContentsIndex

discard-source-info

Function
Summary

Clears the internal dspec database.

Package

dspec

Signature

discard-source-info => nil

Arguments

None.

Values

Returns nil.

Description

The function discard-source-info removes all source location information from the internal dspec database.

Example

To build my-image which does not contain source locations for the definitions loaded, but retaining a tags database of those definitions:

(load-all-patches)
(load "my-code")
(dspec:save-tags-database
  (compile-file-pathname #P"my-tags-database"))
(dspec:discard-source-info)
(save-image "my-image")
See also

save-tags-database


LispWorks User Guide and Reference Manual - 20 Sep 2017

NextPrevUpTopContentsIndex