From 709a47ceff00db8bb094a61364dd69d11cb635b2 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 19 Aug 2004 19:00:58 +0000 Subject: [PATCH] (char_quoted): Mixup byte/char pos. --- src/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.c b/src/syntax.c index 83763061d82..e1fb7532b85 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -292,7 +292,7 @@ char_quoted (charpos, bytepos) DEC_BOTH (charpos, bytepos); - while (bytepos >= beg) + while (charpos >= beg) { int c; -- 2.39.2