diff options
| author | Richard M. Stallman | 1993-05-29 21:03:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-29 21:03:32 +0000 |
| commit | 85e28fa2a720ffbe599a03e156b03aa8245fd445 (patch) | |
| tree | d22c54d444b2e2f1e985259c45bbc48094bbdbbb /src | |
| parent | 6fcb1cf3900a5e94dfea66963ab8302ca2aeac55 (diff) | |
| download | emacs-85e28fa2a720ffbe599a03e156b03aa8245fd445.tar.gz emacs-85e28fa2a720ffbe599a03e156b03aa8245fd445.zip | |
(menu_bar_items): Call Fnreverse before restoring Vinhibit_quit.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 0725bf2f105..fdfe3b5dfec 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -3118,8 +3118,9 @@ menu_bar_items () | |||
| 3118 | result = menu_bar_one_keymap (def, result); | 3118 | result = menu_bar_one_keymap (def, result); |
| 3119 | } | 3119 | } |
| 3120 | 3120 | ||
| 3121 | result = Fnreverse (result); | ||
| 3121 | Vinhibit_quit = oquit; | 3122 | Vinhibit_quit = oquit; |
| 3122 | return Fnreverse (result); | 3123 | return result; |
| 3123 | } | 3124 | } |
| 3124 | 3125 | ||
| 3125 | /* Scan one map KEYMAP, accumulating any menu items it defines | 3126 | /* Scan one map KEYMAP, accumulating any menu items it defines |