]> git.eshelyaron.com Git - emacs.git/commitdiff
(skip_chars): Remove unused labels fwd_unibyte_ok and back_unibyte_ok.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 30 Jun 2004 19:34:49 +0000 (19:34 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 30 Jun 2004 19:34:49 +0000 (19:34 +0000)
src/syntax.c

index 302250c39a46c00ad3f00a253cec6d24cab90c51..83763061d8227687ebc524f8f9b59c6e226ad3d1 100644 (file)
@@ -1734,7 +1734,6 @@ skip_chars (forwardp, syntaxp, string, lim, handle_iso_classes)
                  if (!fastmap[*p])
                    break;
 
-               fwd_unibyte_ok:
                  p++, pos++;
                }
          }
@@ -1808,7 +1807,6 @@ skip_chars (forwardp, syntaxp, string, lim, handle_iso_classes)
                  if (!fastmap[p[-1]])
                    break;
 
-               back_unibyte_ok:
                  p--, pos--;
                }
          }