diff options
| author | Richard M. Stallman | 1994-08-23 08:24:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-08-23 08:24:23 +0000 |
| commit | 588a7c5d163cf8ee005d74f34e997cdc8c24eea6 (patch) | |
| tree | 300f13d292dd36411feba76fed26fc22dd2bba2a /src | |
| parent | 3e6caf2a4bf5546be2ad0175f6bfed6af2d45232 (diff) | |
| download | emacs-588a7c5d163cf8ee005d74f34e997cdc8c24eea6.tar.gz emacs-588a7c5d163cf8ee005d74f34e997cdc8c24eea6.zip | |
(read_char): After read_char_minibuf_menu_prompt,
don't just return; jump to non_reread.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e916bc7ee09..2209dbeeee0 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -1582,7 +1582,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) | |||
| 1582 | { | 1582 | { |
| 1583 | c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps); | 1583 | c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps); |
| 1584 | if (! NILP (c)) | 1584 | if (! NILP (c)) |
| 1585 | return c; | 1585 | goto non_reread; |
| 1586 | } | 1586 | } |
| 1587 | 1587 | ||
| 1588 | /* If in middle of key sequence and minibuffer not active, | 1588 | /* If in middle of key sequence and minibuffer not active, |