list-features [Function]


Purpose

The list-features function lists (1) all available Loom features, and (2) all features that are currently set. These features control the overall behavior of Loom, including the amount and type of dialogue that Loom has with the user.

Syntax

list-features &key dont-display-p

Arguments

If the dont-display-p argument is t, then the lists of available features and currently-set features are not displayed.

Value

The list-features function returns a list of the features which are currently set.

Remarks

The following Loom features are available:

Examples

(list-features) --> 
    Possible features: 
      (:OPEN-WORLD :CLOSED-WORLD :PREFER-CLOS-INSTANCES \ldots)
    Current features: 
      (:OPEN-WORLD :EMIT-MATCH-STARS \ldots) 
(list-features :dont-display-p t) ==>  
    (:OPEN-WORLD :EMIT-MATCH-STARS \ldots)

See Also

Last modified: Jun 1 1995