]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_frame): Change initialization of tool bar
authorGerd Moellmann <gerd@gnu.org>
Wed, 22 Nov 2000 16:28:38 +0000 (16:28 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 22 Nov 2000 16:28:38 +0000 (16:28 +0000)
items accordingly.

src/frame.c

index f41eaf0292f4202b8c9047ab70f48c5a9c402e7c..f07254dcfed0638c18067286070324ea21fe85bb 100644 (file)
@@ -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)