WHAT_KEY has better equivalents in other tools.
authorPierre Habouzit <madcoder@debian.org>
Sat, 10 Nov 2007 16:28:06 +0000 (17:28 +0100)
committerPierre Habouzit <madcoder@debian.org>
Sat, 10 Nov 2007 16:28:06 +0000 (17:28 +0100)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
OPS
functions.def
lib-ui/curs_lib.c
lib-ui/curs_main.c
lib-ui/curses.h
lib-ui/menu.c

diff --git a/OPS b/OPS
index 1f0883e..17c04a0 100644 (file)
--- a/OPS
+++ b/OPS
@@ -174,7 +174,6 @@ OP_UNDELETE_SUBTHREAD "undelete all messages in subthread"
 OP_VERSION "show the Mutt version number and date"
 OP_VIEW_ATTACH "view attachment using mailcap entry if necessary"
 OP_VIEW_ATTACHMENTS "show MIME attachments"
-OP_WHAT_KEY "display the keycode for a key press"
 OP_MAIN_SHOW_LIMIT "show currently active limit pattern"
 OP_MAIN_COLLAPSE_THREAD "collapse/uncollapse current thread"
 OP_MAIN_COLLAPSE_ALL "collapse/uncollapse all threads"
index 7b5f3f5..f95bc49 100644 (file)
@@ -81,7 +81,6 @@ LIST(OpGeneric)
     ITEM("current-top",      OP_CURRENT_TOP,          NULL)
     ITEM("current-middle",   OP_CURRENT_MIDDLE,       NULL)
     ITEM("current-bottom",   OP_CURRENT_BOTTOM,       NULL)
-    ITEM("what-key",         OP_WHAT_KEY,             NULL)
 ENDLIST
 
 LIST(OpMain)
index a2b88c8..5ac5dcb 100644 (file)
@@ -324,27 +324,6 @@ void curses_initialize(void)
     ESCDELAY = 50;
 }
 
-/*
- * 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 = getch();
-    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 ();
-}
-
 int mutt_any_key_to_continue (const char *s)
 {
   struct termios t;
index 8d0611f..26bb962 100644 (file)
@@ -1951,10 +1951,6 @@ int mutt_index_menu (void)
     case OP_END_COND:
       break;
 
-    case OP_WHAT_KEY:
-      mutt_what_key ();
-      break;
-
     case OP_SIDEBAR_SCROLL_UP:
     case OP_SIDEBAR_SCROLL_DOWN:
     case OP_SIDEBAR_NEXT:
index b2f4d0b..c059336 100644 (file)
@@ -117,7 +117,6 @@ void mutt_show_error (void);
 ssize_t mutt_pretty_size(char *s, ssize_t len, ssize_t n);
 
 int mutt_any_key_to_continue (const char *);
-void mutt_what_key (void);
 int mutt_complete (char *, ssize_t);
 #define mutt_enter_fname(A,B,C,D,E) _mutt_enter_fname(A,B,C,D,E,0,NULL,NULL)
 int _mutt_enter_fname (const char *, char *, ssize_t, int *, int, int,
index 0aac994..d0b8c54 100644 (file)
@@ -837,10 +837,6 @@ int mutt_menuLoop (MUTTMENU * menu)
       MAYBE_REDRAW (menu->redraw);
       break;
 
-    case OP_WHAT_KEY:
-      mutt_what_key ();
-      break;
-
     case OP_REDRAW:
       clearok (main_w, TRUE);
       menu->redraw = REDRAW_FULL;