gdb, gdbserver, gdbsupport: fix leading space vs tabs issues
[deliverable/binutils-gdb.git] / gdb / tui / tui-win.c
index 86c0fdba2bc19e3777fa7b2e33b6406035b53cc4..b83c3e61467c4fab82f6358453d54e5c6ed4c44a 100644 (file)
@@ -240,7 +240,7 @@ translate (const char *name, struct tui_translate *table)
   while (table->name)
     {
       if (name && strcmp (table->name, name) == 0)
-        return table;
+       return table;
       table++;
     }
 
@@ -511,7 +511,7 @@ tui_resize_all (void)
       tui_set_term_width_to (screenwidth);
 
       /* erase + clearok are used instead of a straightforward clear as
-         AIX 5.3 does not define clear.  */
+        AIX 5.3 does not define clear.  */
       erase ();
       clearok (curscr, TRUE);
       tui_apply_current_layout ();
@@ -1004,7 +1004,7 @@ _initialize_tui_win ()
                       0 /* allow-unknown */, &showlist);
 
   add_com ("refresh", class_tui, tui_refresh_all_command,
-           _("Refresh the terminal display."));
+          _("Refresh the terminal display."));
 
   cmd = add_com ("tabset", class_tui, tui_set_tab_width_command, _("\
 Set the width (in characters) of tab stops.\n\
This page took 0.025807 seconds and 4 git commands to generate.