From c8b8e7e336ad1b06d9b9e97a447b79e763516d06 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 25 Apr 1994 22:12:09 +0000 Subject: [PATCH] (make_frame): Initialize fields menu_bar_vector and menu_bar_items_used. --- src/frame.c | 2 ++ 1 file changed, 2 insertions(+) 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) f->condemned_scroll_bars = Qnil; f->face_alist = Qnil; f->menu_bar_items = Qnil; + f->menu_bar_vector = Qnil; + f->menu_bar_items_used = 0; root_window = make_window (); if (mini_p) -- 2.39.5