m2ym / optima

Optimized Pattern Matching Library for Common Lisp
271 stars 19 forks source link

correct documentation: keywords are constant-pattern too #81

Closed tpapp closed 11 years ago

tpapp commented 11 years ago
constant-pattern ::= t | nil
                   | atom-except-symbol
                   | (quote VALUE)

should be something like

constant-pattern ::= t | nil
                   | keyword
                   | atom-except-symbol
                   | (quote VALUE)

from the definition of parse-pattern.

m2ym commented 11 years ago

Done. Thanks! 056a142f1284b32f84229c999460249c36731a74