kconfig: menuconfig: remove unused M_EVENT macro
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 25 Mar 2023 15:18:16 +0000 (00:18 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Mon, 17 Apr 2023 02:03:56 +0000 (11:03 +0900)
This is not used anywhere.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/lxdialog/dialog.h

index bd2da3a928a7531cf3eb8ffa64a4ee9f3b26d1b8..347daf25fdc8be922ff7a91ec0ce44959aa941df 100644 (file)
@@ -209,14 +209,3 @@ int dialog_checklist(const char *title, const char *prompt, int height,
                     int width, int list_height);
 int dialog_inputbox(const char *title, const char *prompt, int height,
                    int width, const char *init);
-
-/*
- * This is the base for fictitious keys, which activate
- * the buttons.
- *
- * Mouse-generated keys are the following:
- *   -- the first 32 are used as numbers, in addition to '0'-'9'
- *   -- the lowercase are used to signal mouse-enter events (M_EVENT + 'o')
- *   -- uppercase chars are used to invoke the button (M_EVENT + 'O')
- */
-#define M_EVENT (KEY_MAX+1)