m2ym / optima

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

Quasiquotation error on SBCL(1.3.0.56-976267b) #118

Closed byulparan closed 9 years ago

byulparan commented 9 years ago
(match '(1 2 3 4) 
    (`(1 ,x ,@y) (list x y)))

in CCL => (2 (3 4)) but SBCL(1.3.0.56-976267b) => error. 1 is not a string designator.

m2ym commented 9 years ago

Do you use fare-quasiquote?

byulparan commented 9 years ago

Ah! .. I don't know fare-quasiquote before..., but now It's OK. sorry for noise. Thank you!