summaryrefslogtreecommitdiffstats
path: root/curs_lib.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2020-05-11 13:12:23 -0700
committerKevin McCarthy <kevin@8t8.us>2020-05-11 13:12:23 -0700
commitd338650ff662d308a1a99b902b4bf9ac93a14685 (patch)
tree5b5ee800324a181ff0a0868051dbe93cf16bcc1e /curs_lib.c
parent64d6727940cdd7fb787ab22fb6dbec000e96bf27 (diff)
Remove unused mutt_enter_fname() functions.
All the callers use the buffer version.
Diffstat (limited to 'curs_lib.c')
-rw-r--r--curs_lib.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/curs_lib.c b/curs_lib.c
index 92eda9b1..05812f0a 100644
--- a/curs_lib.c
+++ b/curs_lib.c
@@ -997,22 +997,6 @@ int mutt_do_pager (const char *banner,
return rc;
}
-int _mutt_enter_fname (const char *prompt, char *buf, size_t blen, int buffy,
- int multiple, char ***files, int *numfiles)
-{
- BUFFER *fname;
- int rc;
-
- fname = mutt_buffer_pool_get ();
-
- mutt_buffer_addstr (fname, buf);
- rc = _mutt_buffer_enter_fname (prompt, fname, buffy, multiple, files, numfiles);
- strfcpy (buf, mutt_b2s (fname), blen);
-
- mutt_buffer_pool_release (&fname);
- return rc;
-}
-
int _mutt_buffer_enter_fname (const char *prompt, BUFFER *fname, int buffy,
int multiple, char ***files, int *numfiles)
{