Use consp to avoid treating nil as a list --> to head
feature-tests.lisp
Changes to feature-tests.lisp:
Mon Jul 20 01:09:25 UTC 2009 pix@kepibu.org
* Better reporting of undefined-feature-tests.
hunk ./feature-tests.lisp 15
- :format-control "Unknown feature test: ~a"
- :format-arguments (list feature))
+ :format-control "Unknown feature test: ~s"
+ :format-arguments (list (car feature)))
Sun Jul 19 13:58:20 UTC 2009 pix@kepibu.org
* Use consp to avoid treating nil as a list
hunk ./feature-tests.lisp 23
- (if (listp feature)
+ (if (consp feature)
Content-type: text/plain; charset=utf-8 Not yet implemented