diff options
| author | Stefan Monnier | 2004-08-19 19:00:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-08-19 19:00:58 +0000 |
| commit | 709a47ceff00db8bb094a61364dd69d11cb635b2 (patch) | |
| tree | 4e0b0277c10584c612aa9d365f2ca10abb3fc5ad /src | |
| parent | 00267f94d1c7b303cd8ba1294e9d849f2888517c (diff) | |
| download | emacs-709a47ceff00db8bb094a61364dd69d11cb635b2.tar.gz emacs-709a47ceff00db8bb094a61364dd69d11cb635b2.zip | |
(char_quoted): Mixup byte/char pos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 292 | 292 | ||
| 293 | DEC_BOTH (charpos, bytepos); | 293 | DEC_BOTH (charpos, bytepos); |
| 294 | 294 | ||
| 295 | while (bytepos >= beg) | 295 | while (charpos >= beg) |
| 296 | { | 296 | { |
| 297 | int c; | 297 | int c; |
| 298 | 298 | ||