From: Thomas Roessler Date: Mon, 12 Feb 2001 20:42:40 +0000 (+0000) Subject: Fix '?' in the file name dialogue. Fixes #468, #465. X-Git-Tag: mutt-1-3-16-rel~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d33a265565f2a692e17b958a69fb981c2f88f5b;p=mutt Fix '?' in the file name dialogue. Fixes #468, #465. --- diff --git a/curs_lib.c b/curs_lib.c index 347570eb..ecd1a00d 100644 --- a/curs_lib.c +++ b/curs_lib.c @@ -403,7 +403,7 @@ int _mutt_enter_fname (const char *prompt, char *buf, size_t blen, int *redraw, { mutt_refresh (); buf[0] = 0; - _mutt_select_file (buf, blen, M_SEL_FOLDER | (buffy ? M_SEL_BUFFY : 0) | (multiple ? M_SEL_MULTI : 0), + _mutt_select_file (buf, blen, M_SEL_FOLDER | (multiple ? M_SEL_MULTI : 0), files, numfiles); *redraw = REDRAW_FULL; }