| 252 | } |
| 253 | |
| 254 | static bool |
| 255 | newline_or_blank (mcel_t g) |
| 256 | { |
| 257 | return g.ch == '\n' || c32issep (g.ch); |
| 258 | } |
| 259 | |
| 260 | /* Given a linebuffer LINE, |
| 261 | return a pointer to the beginning of the line's field to be compared. |
nothing calls this directly
no test coverage detected