aboutsummaryrefslogtreecommitdiffhomepage
path: root/lex.h
diff options
context:
space:
mode:
author lemon<lsof@mailbox.org>2025-10-15 10:45:12 +0200
committer lemon<lsof@mailbox.org>2025-10-15 10:45:12 +0200
commit437efda31319573dcf67337d1cc6e4a23a6967a4 (patch)
tree364c4e568a97b1d574d72289206a19e8494ab6e4 /lex.h
parent867d9eba4f85406b466accb913f0ab8e2d410a41 (diff)
misc
Diffstat (limited to 'lex.h')
-rw-r--r--lex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lex.h b/lex.h
index 3c1d431..3de4f6e 100644
--- a/lex.h
+++ b/lex.h
@@ -4,7 +4,7 @@ static inline bool
joinspan(struct span0 *dst, struct span0 snd)
{
if (dst->file != snd.file) return 0;
- assert(dst->off <= snd.off);
+ if (dst->off > snd.off) return 0;
dst->len = snd.off + snd.len - dst->off;
return 1;
}