aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-22 16:28:38 +0000
committerGerd Moellmann2000-11-22 16:28:38 +0000
commit617522617e4b0e90787614060ff19731f4d08310 (patch)
tree92d30569529ddb66060ce14e2e0f9f96e46ec717 /src
parente3303a238324391d5be74bc3d9fba1c20b3a7848 (diff)
downloademacs-617522617e4b0e90787614060ff19731f4d08310.tar.gz
emacs-617522617e4b0e90787614060ff19731f4d08310.zip
(make_frame): Change initialization of tool bar
items accordingly.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c4
1 files changed, 2 insertions, 2 deletions
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)
246 f->title = Qnil; 246 f->title = Qnil;
247 f->menu_bar_window = Qnil; 247 f->menu_bar_window = Qnil;
248 f->tool_bar_window = Qnil; 248 f->tool_bar_window = Qnil;
249 f->desired_tool_bar_items = f->current_tool_bar_items = Qnil; 249 f->tool_bar_items = Qnil;
250 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil; 250 f->desired_tool_bar_string = f->current_tool_bar_string = Qnil;
251 f->n_desired_tool_bar_items = f->n_current_tool_bar_items = 0; 251 f->n_tool_bar_items = 0;
252 252
253 root_window = make_window (); 253 root_window = make_window ();
254 if (mini_p) 254 if (mini_p)