LINES - 1 is the status bar, living on stdscr.
[apps/madmutt.git] / muttlib.c
index b34cede..79fc2c5 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -312,14 +312,6 @@ int mutt_save_confirm (const char *s, struct stat *st)
     return 1;
   }
 
-#ifdef USE_NNTP
-  if (magic == M_NNTP) {
-    mutt_error _("Can't save message to newsserver.");
-
-    return 0;
-  }
-#endif
-
   if (magic > 0 && !mx_access (s, W_OK)) {
     if (option (OPTCONFIRMAPPEND) &&
         (!TrashPath || (m_strcmp(s, TrashPath) != 0))) {
@@ -358,7 +350,7 @@ int mutt_save_confirm (const char *s, struct stat *st)
     }
   }
 
-  CLEARLINE(main_w, LINES - 1);
+  CLEARLINE(stdscr, LINES - 1);
   return (ret);
 }