X-Git-Url: https://git.distorted.org.uk/~mdw/lisp/blobdiff_plain/a035dd4a8175317f19a35cd04568d1655fb8d417..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))