cl-ansi-text
cl-ansi-text copied to clipboard
Fix color-specifer to use null rather than nil.
This is a typical pitfall.
NIL
does not match any type.
(typep nil nil) => NIL
(typep nil 'null) => T
(typep '(0) '(cons fixnum nil)) => NIL
(typep '(0) '(cons fixnum null)) => T