X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib-ui%2Fcurs_lib.c;h=cfdba38ba781115ef22b5033bce30372096a38fe;hb=d8c2844a5a8b0fcf09158dcdd452f6e43e29b5db;hp=891e20f80975cd599fa847159bc610f29bd3e5f1;hpb=8d453d89f4f37f4c379d95880c06a23443cc27fa;p=apps%2Fmadmutt.git diff --git a/lib-ui/curs_lib.c b/lib-ui/curs_lib.c index 891e20f..cfdba38 100644 --- a/lib-ui/curs_lib.c +++ b/lib-ui/curs_lib.c @@ -21,7 +21,7 @@ #include #include "menu.h" -#include "enter.h" +#include "browser.h" #include "mutt.h" #include "pager.h" @@ -61,28 +61,6 @@ event_t mutt_getch (void) return (ch == ctrl ('G') ? err : ret); } -int _mutt_get_field ( const char *field, char *buf, ssize_t buflen, - int complete, int multiple, char ***files, int *numfiles) -{ - int ret; - int x, y; - - ENTER_STATE *es = mutt_new_enter_state (); - - do { - CLEARLINE(stdscr, LINES - 1); - waddstr (stdscr, field); - mutt_refresh (); - getyx (stdscr, y, x); - ret = mutt_enter_string(buf, buflen, y, x, complete, multiple, files, - numfiles, es); - } while (ret == 1); - CLEARLINE(stdscr, LINES - 1); - mutt_free_enter_state (&es); - - return (ret); -} - int mutt_get_field_unbuffered (char *msg, char *buf, ssize_t buflen, int flags) { int rc;