aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index 4bc5286..9deb87a 100644
--- a/lex.c
+++ b/lex.c
@@ -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