Fixed nary comparison operators (ex: (< 1 2 3) should translate to (1
authorVladimir Sedach <vsedach@gmail.com>
Fri, 7 Aug 2009 04:21:11 +0000 (22:21 -0600)
committerVladimir Sedach <vsedach@gmail.com>
Fri, 7 Aug 2009 04:21:11 +0000 (22:21 -0600)
commita14fb2cb9bce1d6956cc9be3a7e7b67451b7032f
treed62d7cd3f0bcb35a68817c22658a22c4414a0b82
parent578e856583a471b35bb4e2404a6618f04c380022
Fixed nary comparison operators (ex: (< 1 2 3) should translate to (1
< 2) && (2 < 3) instead of 1 < 2 < 3).
docs/reference.lisp
src/compiler.lisp
src/package.lisp
src/printer.lisp
t/ps-tests.lisp
t/reference-tests.lisp