diff options
| author | 2025-10-13 19:47:33 +0200 | |
|---|---|---|
| committer | 2025-10-13 19:47:33 +0200 | |
| commit | 2e336f98e7cf83fd9e678b28627af5c56a1ed027 (patch) | |
| tree | 8dd7da64a8b0955c2785673469e8e2a08ecdde63 | |
| parent | 78145f612583750e25090c4d37e418db9aa9c5e2 (diff) | |
lex: correct wsseparated (maybe?)
| -rw-r--r-- | lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -627,7 +627,7 @@ static bool /* whitespace separating tokens? */ wsseparated(const struct token *l, const struct token *r) { assert(l->span.sl.file == r->span.sl.file); - return l->span.sl.off + l->span.sl.len < r->span.sl.off; + return l->span.sl.off + l->span.sl.len != r->span.sl.off; } static bool |