diff options
Diffstat (limited to 'char.lisp')
-rw-r--r-- | char.lisp | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,7 +1,5 @@ (in-package #:char) (defun whitespace? (x) - (some (lambda (y) (char= x y)) '(#\Space #\Newline #\Tab))) - -(defun visible? (x) - (char/= x #\Space #\Newline #\Tab)) + (or (char= x #\Space) + (not (graphic-char-p x)))) |