Andreas Krennmair:
[apps/madmutt.git] / curs_lib.c
index 9c0567a..32b9492 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
@@ -134,29 +138,6 @@ int _mutt_get_field (/* const */ char *field, char *buf, size_t buflen, int comp
   return (ret);
 }
 
-int _mutt_get_field_att (/* const */ char *field, char *buf, size_t buflen, int complete, int multiple, char ***files, int *numfiles)
-{
-  int ret;
-  int x, y;
-
-  ENTER_STATE *es = mutt_new_enter_state();
-  
-  do
-  {
-    CLEARLINE (LINES-1);
-    addstr (field);
-    mutt_refresh ();
-    getyx (stdscr, y, x);
-    ret = _mutt_enter_string_att (buf, buflen, y, x, complete, multiple, files, numfiles, es);
-  }
-  while (ret == 1);
-  CLEARLINE (LINES-1);
-  mutt_free_enter_state (&es);
-  
-  return (ret);
-}
-
-
 int mutt_get_password (char *msg, char *buf, size_t buflen)
 {
   int rc;