CLCS
Function

graphic-char-p

graphic-char-p chargeneralized-boolean

Arguments and Values

chara character.
generalized-booleana generalized boolean.

Description

Returns true if character is a graphic character; otherwise, returns false.

Examples

 (graphic-char-p #\G) ⇒  true
 (graphic-char-p #\#) ⇒  true
 (graphic-char-p #\Space) ⇒  true
 (graphic-char-p #\Newline) ⇒  false

Exceptional Situations

Should signal an error of type type-error if character is not a character.