From: Paul Eggert Date: Sun, 3 Nov 2002 07:49:40 +0000 (+0000) Subject: Don't include quote.h; not needed. X-Git-Tag: BISON-1_875~367 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=397477b4e96ccbd35d010dd1d69ad9b57cc24c91;p=platform%2Fupstream%2Fbison.git Don't include quote.h; not needed. (get_merge_function): Reword warning to be consistent with type clash diagnostic in grammar_current_rule_check. --- diff --git a/src/reader.c b/src/reader.c index 1e94d18..ea6d27c 100644 --- a/src/reader.c +++ b/src/reader.c @@ -22,7 +22,6 @@ #include "system.h" #include "quotearg.h" -#include "quote.h" #include "getargs.h" #include "files.h" #include "symtab.h" @@ -138,8 +137,8 @@ get_merge_function (const char* name, const char* type, merge_functions = head.next; } else if (strcmp (type, syms->next->type) != 0) - warn_at (loc, _("result type clash on merge function %s: `%s' vs. `%s'"), - name, type, syms->next->type); + warn_at (loc, _("result type clash (`%s' `%s') on merge function %s"), + type, syms->next->type, name); return n; }