char-whitespace? Ken Dickey (15 Feb 2004 04:06 UTC)
Re: char-whitespace? bear (15 Feb 2004 21:40 UTC)
Re: char-whitespace? Paul Schlie (15 Feb 2004 22:23 UTC)
Re: char-whitespace? Paul Schlie (15 Feb 2004 23:01 UTC)
Re: char-whitespace? Ken Dickey (16 Feb 2004 01:12 UTC)
Re: char-whitespace? Paul Schlie (16 Feb 2004 04:46 UTC)
Re: char-whitespace? Tom Lord (20 Feb 2004 18:40 UTC)

Re: char-whitespace? Tom Lord 20 Feb 2004 18:59 UTC

    > From: Ken Dickey <xxxxxx@allvantage.com>

    > I just noted that Tab, Form Feed, Line Feed, and Carriage Return have Unicode
    > class Cc [Control Code] and are not in Zs (Separator, space) or Zl
    > (Separator, line).

    > I suspect the char-whitespace? definition should include them.

Oops.

Corrected unicode-chars.srfi:

  <p>A character must be <code>char-whitespace?</code> if <b>either</b>
  it's General Category property is any of:
  <pre>
        Zs (Separator, space)
        Zl (Separator, line)
  </pre>
  <b>or</b> if it is any of the codepoints:
  <pre>
        U+0009	(HORIZONTAL TABULATION)
        U+000D  (CARRIAGE RETURN)
        U+000C  (FORM FEED)
  </pre>

The name "CARRIAGE RETURN" makes me long for a computer keyboard with
one of those big metal levers found on mechanical typewriters.  And a
mechanical bell, too.

-t