diff options
| author | Richard M. Stallman | 1994-04-25 22:12:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-25 22:12:09 +0000 |
| commit | c8b8e7e336ad1b06d9b9e97a447b79e763516d06 (patch) | |
| tree | a52ee6671ad7230e432624fa9fe2de74b7794aa8 /src | |
| parent | 8d6de7cea6237ac32989f1710af4bda10194a142 (diff) | |
| download | emacs-c8b8e7e336ad1b06d9b9e97a447b79e763516d06.tar.gz emacs-c8b8e7e336ad1b06d9b9e97a447b79e763516d06.zip | |
(make_frame): Initialize fields menu_bar_vector and menu_bar_items_used.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index eaab6d11ba7..51a7585b807 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -168,6 +168,8 @@ make_frame (mini_p) | |||
| 168 | f->condemned_scroll_bars = Qnil; | 168 | f->condemned_scroll_bars = Qnil; |
| 169 | f->face_alist = Qnil; | 169 | f->face_alist = Qnil; |
| 170 | f->menu_bar_items = Qnil; | 170 | f->menu_bar_items = Qnil; |
| 171 | f->menu_bar_vector = Qnil; | ||
| 172 | f->menu_bar_items_used = 0; | ||
| 171 | 173 | ||
| 172 | root_window = make_window (); | 174 | root_window = make_window (); |
| 173 | if (mini_p) | 175 | if (mini_p) |