aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>1999-09-05 15:49:07 +0000
committerGerd Moellmann <[email protected]>1999-09-05 15:49:07 +0000
commit9ea173e83025644384bad4a4ea697bcb6cf7995e (patch)
treef787c96d61d0fecd60d18e050f8649b6fd77a19d /src/frame.c
parente037b9ecb3c11b1775171da6e9376a5221fefd78 (diff)
Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
Likewise for upper-case etc.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/frame.c b/src/frame.c
index bfd4b2d491..45cb23b6f2 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -90,7 +90,7 @@ Lisp_Object Qname;
Lisp_Object Qonly;
Lisp_Object Qunsplittable;
Lisp_Object Qmenu_bar_lines;
-Lisp_Object Qtoolbar_lines;
+Lisp_Object Qtool_bar_lines;
Lisp_Object Qwidth;
Lisp_Object Qx;
Lisp_Object Qw32;
@@ -128,8 +128,8 @@ syms_of_frame_1 ()
staticpro (&Qunsplittable);
Qmenu_bar_lines = intern ("menu-bar-lines");
staticpro (&Qmenu_bar_lines);
- Qtoolbar_lines = intern ("toolbar-lines");
- staticpro (&Qtoolbar_lines);
+ Qtool_bar_lines = intern ("tool-bar-lines");
+ staticpro (&Qtool_bar_lines);
Qwidth = intern ("width");
staticpro (&Qwidth);
Qx = intern ("x");
@@ -329,10 +329,10 @@ make_frame (mini_p)
f->namebuf = 0;
f->title = Qnil;
f->menu_bar_window = Qnil;
- f->toolbar_window = Qnil;
- f->desired_toolbar_items = f->current_toolbar_items = Qnil;
- f->desired_toolbar_string = f->current_toolbar_string = Qnil;
- f->n_desired_toolbar_items = f->n_current_toolbar_items = 0;
+ f->tool_bar_window = Qnil;
+ f->desired_tool_bar_items = f->current_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;
root_window = make_window ();
if (mini_p)