diff options
| author | Gerd Moellmann | 2000-11-22 16:28:38 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-22 16:28:38 +0000 |
| commit | 617522617e4b0e90787614060ff19731f4d08310 (patch) | |
| tree | 92d30569529ddb66060ce14e2e0f9f96e46ec717 /src | |
| parent | e3303a238324391d5be74bc3d9fba1c20b3a7848 (diff) | |
| download | emacs-617522617e4b0e90787614060ff19731f4d08310.tar.gz emacs-617522617e4b0e90787614060ff19731f4d08310.zip | |
(make_frame): Change initialization of tool bar
items accordingly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 4 |
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) |