diff src/syntax.c @ 50697:019e87a60687

(skip_chars): Fix previous change.
author Kenichi Handa <handa@m17n.org>
date Thu, 24 Apr 2003 23:24:51 +0000
parents 96dc22fa49d3
children 5a30d8fb640c
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--;
 		}