From: Andrew Cagney Date: Mon, 11 Jun 2001 21:54:04 +0000 (+0000) Subject: s/supress/suppress/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59807497db8302da30ff592263e346d012a52913;p=binutils-gdb.git s/supress/suppress/ --- diff --git a/gdb/mi/ChangeLog b/gdb/mi/ChangeLog index cbff9c721a7..55ce6a1b545 100644 --- a/gdb/mi/ChangeLog +++ b/gdb/mi/ChangeLog @@ -1,3 +1,7 @@ +Mon Jun 11 17:22:25 2001 Andrew Cagney + + * mi-out.c: Fix typo. s/supress/suppress/. + 2001-06-09 Andrew Cagney * mi-out.c (mi_table_end, mi_table_begin, mi_begin, mi_end): Move diff --git a/gdb/mi/mi-out.c b/gdb/mi/mi-out.c index 71188f2e297..0e0ac3f61c8 100644 --- a/gdb/mi/mi-out.c +++ b/gdb/mi/mi-out.c @@ -31,7 +31,7 @@ struct ui_out_data { - int supress_field_separator; + int suppress_field_separator; int first_header; struct ui_file *buffer; }; @@ -293,8 +293,8 @@ static void field_separator (struct ui_out *uiout) { struct ui_out_data *data = ui_out_data (uiout); - if (data->supress_field_separator) - data->supress_field_separator = 0; + if (data->suppress_field_separator) + data->suppress_field_separator = 0; else fputc_unfiltered (',', data->buffer); } @@ -306,7 +306,7 @@ mi_open (struct ui_out *uiout, { struct ui_out_data *data = ui_out_data (uiout); field_separator (uiout); - data->supress_field_separator = 1; + data->suppress_field_separator = 1; if (name) fprintf_unfiltered (data->buffer, "%s=", name); switch (type) @@ -338,7 +338,7 @@ mi_close (struct ui_out *uiout, default: internal_error (__FILE__, __LINE__, "bad switch"); } - data->supress_field_separator = 0; + data->suppress_field_separator = 0; } /* add a string to the buffer */ @@ -383,7 +383,7 @@ mi_out_new (void) { int flags = 0; struct ui_out_data *data = XMALLOC (struct ui_out_data); - data->supress_field_separator = 0; + data->suppress_field_separator = 0; /* FIXME: This code should be using a ``string_file'' and not the TUI buffer hack. */ data->buffer = mem_fileopen ();