diff options
| author | Richard M. Stallman | 1994-05-20 08:18:01 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-20 08:18:01 +0000 |
| commit | 9fdbfdf8fd005bffdcc42dc7af35cb1708f3edb2 (patch) | |
| tree | 235b0726ca7b3fe63966e7419036ab1193cb3c01 | |
| parent | c04d7da3f0eb2623b25482dab675f9f78bc45605 (diff) | |
| download | emacs-9fdbfdf8fd005bffdcc42dc7af35cb1708f3edb2.tar.gz emacs-9fdbfdf8fd005bffdcc42dc7af35cb1708f3edb2.zip | |
(read_char_minibuf_menu_prompt): Don't forget to initialize nobindings.
(lispy_function_keys): Add `backtab'.
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 573966550bf..d29903b375b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -2357,7 +2357,7 @@ static char *lispy_function_keys[] = | |||
| 2357 | "help", | 2357 | "help", |
| 2358 | "break", /* 0xff6b */ | 2358 | "break", /* 0xff6b */ |
| 2359 | 2359 | ||
| 2360 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 2360 | 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0, |
| 2361 | 0, /* 0xff76 */ | 2361 | 0, /* 0xff76 */ |
| 2362 | 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */ | 2362 | 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */ |
| 2363 | "kp-space", /* 0xff80 */ /* IsKeypadKey */ | 2363 | "kp-space", /* 0xff80 */ /* IsKeypadKey */ |
| @@ -3973,7 +3973,7 @@ read_char_minibuf_menu_prompt (commandflag, nmaps, maps) | |||
| 3973 | int width = FRAME_WIDTH (selected_frame) - 4; | 3973 | int width = FRAME_WIDTH (selected_frame) - 4; |
| 3974 | char *menu = (char *) alloca (width + 4); | 3974 | char *menu = (char *) alloca (width + 4); |
| 3975 | int idx = -1; | 3975 | int idx = -1; |
| 3976 | int nobindings ; | 3976 | int nobindings = 1; |
| 3977 | Lisp_Object rest, vector; | 3977 | Lisp_Object rest, vector; |
| 3978 | 3978 | ||
| 3979 | if (! menu_prompting) | 3979 | if (! menu_prompting) |