]> granicus.if.org Git - neomutt/commitdiff
Make mutt_yesorno use mutt_message to print query. Closes #3352.
authorBrendan Cully <brendan@kublai.com>
Sun, 21 Feb 2010 21:16:59 +0000 (13:16 -0800)
committerBrendan Cully <brendan@kublai.com>
Sun, 21 Feb 2010 21:16:59 +0000 (13:16 -0800)
curs_lib.c

index 88f1559bb35b1ae5cfdb9497d8c2cb5fc9e68ab2..459d559aad9af1a708903e420e9074438a67e6a0 100644 (file)
@@ -223,7 +223,7 @@ int mutt_yesorno (const char *msg, int def)
   answer_string = safe_malloc (COLS + 1);
   snprintf (answer_string, COLS + 1, " ([%s]/%s): ", def == M_YES ? yes : no, def == M_YES ? no : yes);
   answer_string_len = strlen (answer_string);
-  printw ("%.*s%s", COLS - answer_string_len, msg, answer_string);
+  mutt_message ("%.*s%s", COLS - answer_string_len, msg, answer_string);
   FREE (&answer_string);
 
   FOREVER