purge nonsensical code, and use buffers instead
[apps/madmutt.git] / lib-ui / curs_lib.c
index aa029ed..937ada4 100644 (file)
@@ -142,7 +142,7 @@ void mutt_edit_file(const char *data)
   char cmd[LONG_STRING];
 
   mutt_endwin (NULL);
-  m_quotefile_fmt(cmd, sizeof (cmd), MCore.editor, data);
+  m_quotefile_fmt(cmd, sizeof (cmd), mod_core.editor, data);
   if (mutt_system (cmd) == -1)
     mutt_error (_("Error running \"%s\"!"), cmd);
   keypad (stdscr, TRUE);
@@ -398,8 +398,8 @@ int _mutt_enter_fname (const char *prompt, char *buf, ssize_t blen,
   else if (ch.ch == '?') {
     mutt_refresh ();
     buf[0] = 0;
-    _mutt_select_file (buf, blen, M_SEL_FOLDER | (multiple ? M_SEL_MULTI : 0),
-                       files, numfiles);
+    mutt_select_file (buf, blen, M_SEL_FOLDER | (multiple ? M_SEL_MULTI : 0),
+                      files, numfiles);
     *redraw = REDRAW_FULL;
   }
   else {