Code

screen_help: whitespace cosmetics
authorThomas Jansen <mithi@mithi.net>
Thu, 29 Oct 2009 19:58:07 +0000 (20:58 +0100)
committerThomas Jansen <mithi@mithi.net>
Thu, 29 Oct 2009 19:58:07 +0000 (20:58 +0100)
Replaced space characters with one tab to match the rest of the file.

src/screen_help.c

index c24d04db398493625d2cb63751e67b32003aee21..44b1b55acb0a1a93ff3d1f3c51110fb9c8599a43 100644 (file)
@@ -56,7 +56,7 @@ static const struct help_text_row help_text[] = {
 
        { 0, CMD_SCREEN_PREVIOUS,NULL },
        { 0, CMD_SCREEN_NEXT, NULL },
-    { 0, CMD_SCREEN_SWAP, NULL },
+       { 0, CMD_SCREEN_SWAP, NULL },
        { 0, CMD_SCREEN_HELP, NULL },
        { 0, CMD_SCREEN_PLAY, NULL },
        { 0, CMD_SCREEN_FILE, NULL },
@@ -202,7 +202,7 @@ list_callback(unsigned i, G_GNUC_UNUSED void *data)
 static void
 help_init(WINDOW *w, int cols, int rows)
 {
-  lw = list_window_init(w, cols, rows);
+       lw = list_window_init(w, cols, rows);
        lw->hide_cursor = true;
        list_window_set_length(lw, G_N_ELEMENTS(help_text));
 }
@@ -216,7 +216,7 @@ help_resize(int cols, int rows)
 static void
 help_exit(void)
 {
-  list_window_free(lw);
+       list_window_free(lw);
 }