]> git.eshelyaron.com Git - emacs.git/commitdiff
(skip_syntaxes): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Wed, 18 Sep 2002 11:59:36 +0000 (11:59 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 18 Sep 2002 11:59:36 +0000 (11:59 +0000)
src/syntax.c

index debe8c8a9d883b01631411f96130f9a359559963..e16d8bc45ec0590e77c3eea5012f0cdaa3a95a22 100644 (file)
@@ -1792,7 +1792,7 @@ skip_syntaxes (forwardp, string, lim)
              {
                c = FETCH_BYTE (pos_byte);
                MAKE_CHAR_MULTIBYTE (c);
-               if (fastmap[(int) SYNTAX (c)])
+               if (fastmap[(int) SYNTAX (c)])
                  break;
                pos++, pos_byte++;
                UPDATE_SYNTAX_TABLE_FORWARD (pos);