X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/blobdiff_plain/23f32e98a31fa5df4390d28817f851a9984f6fee..2c13c1cd713e033763786de1ce9fc66565abb5df:/mdw-base.lisp diff --git a/mdw-base.lisp b/mdw-base.lisp index c4c3e17..8ba9a24 100644 --- a/mdw-base.lisp +++ b/mdw-base.lisp @@ -119,7 +119,9 @@ (defun whitespace-char-p (ch) "Return whether CH is a whitespace character or not." (case ch - ((#\space #\tab #\newline #\return #\vt #\formfeed) t) + ((#\space #\tab #\newline #\return #\vt + #+cmu #\formfeed + #+clisp #\page) t) (t nil))) (declaim (ftype (function nil ()) slot-unitialized))