]> git.saurik.com Git - bison.git/blobdiff - src/symtab.c
quote consistently and make tests pass with new quoting from gnulib
[bison.git] / src / symtab.c
index bfd3ced1b0d1966d64f907ff71e288043a890988..35b61deafd51541693a4ea511e881edc0851ef6d 100644 (file)
@@ -409,11 +409,11 @@ void
 symbol_make_alias (symbol *sym, symbol *str, location loc)
 {
   if (str->alias)
-    warn_at (loc, _("symbol `%s' used more than once as a literal string"),
-            str->tag);
+    warn_at (loc, _("symbol '%s' used more than once as a literal string"),
+             str->tag);
   else if (sym->alias)
-    warn_at (loc, _("symbol `%s' given more than one literal string"),
-            sym->tag);
+    warn_at (loc, _("symbol '%s' given more than one literal string"),
+             sym->tag);
   else
     {
       str->class = token_sym;