cl-ansi-text icon indicating copy to clipboard operation
cl-ansi-text copied to clipboard

Fix color-specifer to use null rather than nil.

Open hyotang666 opened this issue 3 years ago • 0 comments

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

hyotang666 avatar Aug 29 '21 06:08 hyotang666