summaryrefslogtreecommitdiff
path: root/mail/mailline.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mailline.c')
-rw-r--r--mail/mailline.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/mail/mailline.c b/mail/mailline.c
index d6cef37df..24c7e6e04 100644
--- a/mail/mailline.c
+++ b/mail/mailline.c
@@ -371,7 +371,6 @@ compl_concat (char **a, char **b)
return ret;
}
-static char *msgtype_generator (const char *text, int state);
static char *header_generator (const char *text, int state);
/* Internal completion generator for commands that take a message list
@@ -686,34 +685,6 @@ folder_generator (const char *text, int state)
}
static char *
-msgtype_generator (const char *text, int state)
-{
- /* Allowed message types, plus '/'. The latter can folow a colon,
- meaning body lookup */
- static char types[] = "dnorsTtu/";
- static int i;
- char c;
-
- if (!state)
- {
- i = 0;
- }
- while ((c = types[i]))
- {
- i++;
- if (!text[1] || text[1] == c)
- {
- char *s = mu_alloc (3);
- s[0] = ':';
- s[1] = c;
- s[2] = 0;
- return s;
- }
- }
- return NULL;
-}
-
-static char *
header_generator (const char *text, int state)
{
static int i, len;

Return to:

Send suggestions and report system problems to the System administrator.