This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ob/commit] cli-out.c: whitespace tweaks


2005-01-13  Michael Snyder  <msnyder@redhat.com>

	* cli-out.c: Whitespace tweaks.

Index: cli-out.c
===================================================================
RCS file: /cvs/src/src/gdb/cli-out.c,v
retrieving revision 1.18
diff -p -r1.18 cli-out.c
*** cli-out.c	24 Oct 2003 17:37:03 -0000	1.18
--- cli-out.c	13 Jan 2005 23:37:41 -0000
*************** cli_table_begin (struct ui_out *uiout, i
*** 119,125 ****
      data->suppress_output = 1;
    else
      /* Only the table suppresses the output and, fortunately, a table
!        is not a recursive data structure. */
      gdb_assert (data->suppress_output == 0);
  }
  
--- 119,125 ----
      data->suppress_output = 1;
    else
      /* Only the table suppresses the output and, fortunately, a table
!        is not a recursive data structure.  */
      gdb_assert (data->suppress_output == 0);
  }
  
*************** cli_field_string (struct ui_out *uiout,
*** 263,269 ****
      field_separator ();
  }
  
! /* This is the only field function that does not align */
  
  void
  cli_field_fmt (struct ui_out *uiout, int fldno,
--- 263,269 ----
      field_separator ();
  }
  
! /* This is the only field function that does not align.  */
  
  void
  cli_field_fmt (struct ui_out *uiout, int fldno,
*************** cli_redirect (struct ui_out *uiout, stru
*** 348,354 ****
  /* local functions */
  
  /* Like cli_field_fmt, but takes a variable number of args
!    and makes a va_list and does not insert a separator */
  
  /* VARARGS */
  static void
--- 348,354 ----
  /* local functions */
  
  /* Like cli_field_fmt, but takes a variable number of args
!    and makes a va_list and does not insert a separator.  */
  
  /* VARARGS */
  static void
*************** out_field_fmt (struct ui_out *uiout, int
*** 365,371 ****
    va_end (args);
  }
  
! /* access to ui_out format private members */
  
  static void
  field_separator (void)
--- 365,371 ----
    va_end (args);
  }
  
! /* Access to ui_out format private members.  */
  
  static void
  field_separator (void)
*************** field_separator (void)
*** 374,380 ****
    fputc_filtered (' ', data->stream);
  }
  
! /* initalize private members at startup */
  
  struct ui_out *
  cli_out_new (struct ui_file *stream)
--- 374,380 ----
    fputc_filtered (' ', data->stream);
  }
  
! /* Initalize private members at startup.  */
  
  struct ui_out *
  cli_out_new (struct ui_file *stream)
*************** cli_out_set_stream (struct ui_out *uiout
*** 397,403 ****
    return old;
  }
  
! /* standard gdb initialization hook */
  void
  _initialize_cli_out (void)
  {
--- 397,403 ----
    return old;
  }
  
! /* Standard gdb initialization hook.  */
  void
  _initialize_cli_out (void)
  {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]