Collin Funk <[email protected]> writes:

> I tried to use function like:
>
>     static bool
>     newline_or_blank (mcel_t g)
>     {
>       return g.ch == '\n' || c32isblank (g.ch);
>     }
>
> But that didn't seem to work.

Copy pasted the wrong thing. I meant a new function like:

    static bool
    space (mcel_t g)
    {
      return c32isspace (g.ch) || c32isnbspace (g.ch);
    }

In attempt to skip all white space ignoring whether it is breaking.

Collin

Reply via email to