Home | History | Annotate | Download | only in src

Lines Matching refs:msg_buf

439 	  static struct obstack msg_buf;
448 obstack_init (&msg_buf);
450 obstack_printf (&msg_buf, _("possibly meant: %c"), dollar_or_at);
452 obstack_printf (&msg_buf, "[%s]", id);
454 obstack_sgrow (&msg_buf, id);
455 obstack_sgrow (&msg_buf, tail);
459 obstack_printf (&msg_buf, _(", hiding %c"), dollar_or_at);
461 obstack_printf (&msg_buf, "[%s]", var->id);
463 obstack_sgrow (&msg_buf, var->id);
464 obstack_sgrow (&msg_buf, tail);
467 obstack_printf (&msg_buf, _(" at %s"), at_spec);
473 obstack_printf (&msg_buf, format, midrule_rhs_index);
476 obstack_1grow (&msg_buf, '\0');
479 (char *) obstack_finish (&msg_buf));
482 (char *) obstack_finish (&msg_buf));
483 obstack_free (&msg_buf, 0);