leftovers
authorPierre Habouzit <madcoder@debian.org>
Sat, 11 Aug 2007 09:32:03 +0000 (11:32 +0200)
committerPierre Habouzit <madcoder@debian.org>
Sat, 11 Aug 2007 09:32:03 +0000 (11:32 +0200)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
help.c
protos.h

diff --git a/help.c b/help.c
index 3d2b796..c2b50e2 100644 (file)
--- a/help.c
+++ b/help.c
@@ -39,17 +39,6 @@ static struct binding_t *help_lookupFunction (int op, int menu)
   return (NULL);
 }
 
-void mutt_make_help (char *d, ssize_t dlen, const char *txt, int menu, int op)
-{
-  char buf[STRING];
-
-  if (km_expand_key (buf, sizeof (buf), km_find_func (menu, op)) ||
-      km_expand_key (buf, sizeof (buf), km_find_func (MENU_GENERIC, op)))
-    snprintf (d, dlen, "%s:%s", buf, txt);
-  else
-    d[0] = 0;
-}
-
 static int print_macro (FILE * f, int maxwidth, const char **macro)
 {
   int n = maxwidth;
@@ -129,8 +118,7 @@ static void help_format_line (FILE * f, int ismacro,
 
   fputs (t1, f);
 
-  /* don't try to press string into one line with less than 40 characters.
-     The double paranthesis avoid a gcc warning, sigh ... */
+  /* don't try to press string into one line with less than 40 characters. */
   if ((split = COLS < 40)) {
     col_a = col = 0;
     col_b = LONG_STRING;
index c5f9537..0a7c85d 100644 (file)
--- a/protos.h
+++ b/protos.h
@@ -65,7 +65,6 @@ void mutt_help (int);
 void mutt_draw_tree (CONTEXT *);
 void mutt_make_attribution (CONTEXT * ctx, HEADER * cur, FILE * out);
 void mutt_make_forward_subject (ENVELOPE * env, CONTEXT * ctx, HEADER * cur);
-void mutt_make_help (char *, ssize_t, const char *, int, int);
 void mutt_make_misc_reply_headers (ENVELOPE * env, CONTEXT * ctx,
                                    HEADER * cur, ENVELOPE * curenv);
 void mutt_message_to_7bit (BODY *, FILE *);