Skip to content

Fix find-lexical-variables for LispWorks #1

@Yehouda

Description

@Yehouda

find-lexical-variables can be made to work in LispWorks by the documented sys:map-environment:

#+lispworks (let ((list nil))
(sys:map-environment env :variable #'(lambda (name kind info)
(declare (ignore info))
(when (eq kind :lexical)
(push name list))))
(nreverse list))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions