Move more things about stdscr in lib-ui.
[apps/madmutt.git] / keymap.c
index 5e32da0..4349989 100644 (file)
--- a/keymap.c
+++ b/keymap.c
@@ -848,24 +848,3 @@ int mutt_parse_exec (BUFFER * buf, BUFFER * s, unsigned long data __attribute__
 
   return 0;
 }
-
-/*
- * prompts the user to enter a keystroke, and displays the octal value back
- * to the user.
- */
-void mutt_what_key (void)
-{
-  int ch;
-
-  mvwprintw (stdscr, LINES - 1, 0, _("Enter keys (^G to abort): "));
-  do {
-    ch = wgetch (stdscr);
-    if (ch != ERR && ch != ctrl ('G')) {
-      mutt_message (_("Char = %s, Octal = %o, Decimal = %d"),
-                    km_keyname (ch), ch, ch);
-    }
-  }
-  while (ch != ERR && ch != ctrl ('G'));
-
-  mutt_flushinp ();
-}