Mercurial > emacs
changeset 50697:019e87a60687
(skip_chars): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 24 Apr 2003 23:24:51 +0000 |
parents | cade9fcfe156 |
children | 6fb83ed9ce2d |
files | src/syntax.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Thu Apr 24 23:14:55 2003 +0000 +++ b/src/syntax.c Thu Apr 24 23:24:51 2003 +0000 @@ -1656,7 +1656,7 @@ p = GAP_END_ADDR; stop = endp; } - if (fastmap[*p]) + if (!fastmap[*p]) break; p++, pos++; } @@ -1709,7 +1709,7 @@ p = GPT_ADDR; stop = endp; } - if (fastmap[p[-1]]) + if (!fastmap[p[-1]]) break; p--, pos--; }