X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=help.c;h=30bcbde56e879e7f88270a594cfa40f476ae2ccb;hp=0717d6480444a4b9b15cac6b00205c56cb663896;hb=98f62b5fcbd680fd5214ee85e1635b84322cbdd1;hpb=8ab1ab66eb1c4b95f9b2a5ed9c2b2cf1dfa74544 diff --git a/help.c b/help.c index 0717d64..30bcbde 100644 --- a/help.c +++ b/help.c @@ -27,16 +27,16 @@ static struct binding_t *help_lookupFunction (int op, int menu) /* first look in the generic map for the function */ for (i = 0; OpGeneric[i].name; i++) if (OpGeneric[i].op == op) - return (&OpGeneric[i]); + return &OpGeneric[i]; } if ((map = km_get_table (menu))) { for (i = 0; map[i].name; i++) if (map[i].op == op) - return (&map[i]); + return &map[i]; } - return (NULL); + return NULL; } static int print_macro (FILE * f, int maxwidth, const char **macro) @@ -92,7 +92,7 @@ static int print_macro (FILE * f, int maxwidth, const char **macro) fprintf (f, "?"); } } - return (maxwidth - n); + return maxwidth - n; } static int pad (FILE * f, int col, int i) @@ -102,10 +102,10 @@ static int pad (FILE * f, int col, int i) if (col < i) { snprintf (fmt, sizeof (fmt), "%%-%ds", i - col); fprintf (f, fmt, ""); - return (i); + return i; } fputc (' ', f); - return (col + 1); + return col + 1; } static void help_format_line (FILE * f, int ismacro,