]> git.saurik.com Git - bison.git/blobdiff - src/symtab.c
maint: don't use mbsr?chr.
[bison.git] / src / symtab.c
index b3f94560cec26701292f3770eba290c4fcc20be6..d25b93680685318b9fddb25bfb3dcf19ee378cbb 100644 (file)
@@ -67,7 +67,7 @@ symbol_new (uniqstr tag, location loc)
 
   /* If the tag is not a string (starts with a double quote), check
      that it is valid for Yacc. */
-  if (tag[0] != '\"' && tag[0] != '\'' && mbschr (tag, '-'))
+  if (tag[0] != '\"' && tag[0] != '\'' && strchr (tag, '-'))
     yacc_at (loc, _("POSIX Yacc forbids dashes in symbol names: %s"),
              tag);