From: Gerd Moellmann Date: Wed, 22 Nov 2000 16:28:38 +0000 (+0000) Subject: (make_frame): Change initialization of tool bar X-Git-Tag: emacs-pretest-21.0.92~172 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=617522617e4b0e90787614060ff19731f4d08310;p=emacs.git (make_frame): Change initialization of tool bar items accordingly. --- diff --git a/src/frame.c b/src/frame.c index f41eaf0292f..f07254dcfed 100644 --- a/src/frame.c +++ b/src/frame.c @@ -246,9 +246,9 @@ make_frame (mini_p) f->title = Qnil; f->menu_bar_window = Qnil; f->tool_bar_window = Qnil; - f->desired_tool_bar_items = f->current_tool_bar_items = Qnil; + f->tool_bar_items = Qnil; f->desired_tool_bar_string = f->current_tool_bar_string = Qnil; - f->n_desired_tool_bar_items = f->n_current_tool_bar_items = 0; + f->n_tool_bar_items = 0; root_window = make_window (); if (mini_p)