diff options
| author | Gerd Moellmann | 1999-09-05 15:49:07 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-05 15:49:07 +0000 |
| commit | 9ea173e83025644384bad4a4ea697bcb6cf7995e (patch) | |
| tree | f787c96d61d0fecd60d18e050f8649b6fd77a19d /src/frame.c | |
| parent | e037b9ecb3c11b1775171da6e9376a5221fefd78 (diff) | |
| download | emacs-9ea173e83025644384bad4a4ea697bcb6cf7995e.tar.gz emacs-9ea173e83025644384bad4a4ea697bcb6cf7995e.zip | |
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.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/frame.c b/src/frame.c index bfd4b2d4919..45cb23b6f22 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -90,7 +90,7 @@ Lisp_Object Qname; | |||
| 90 | Lisp_Object Qonly; | 90 | Lisp_Object Qonly; |
| 91 | Lisp_Object Qunsplittable; | 91 | Lisp_Object Qunsplittable; |
| 92 | Lisp_Object Qmenu_bar_lines; | 92 | Lisp_Object Qmenu_bar_lines; |
| 93 | Lisp_Object Qtoolbar_lines; | 93 | Lisp_Object Qtool_bar_lines; |
| 94 | Lisp_Object Qwidth; | 94 | Lisp_Object Qwidth; |
| 95 | Lisp_Object Qx; | 95 | Lisp_Object Qx; |
| 96 | Lisp_Object Qw32; | 96 | Lisp_Object Qw32; |
| @@ -128,8 +128,8 @@ syms_of_frame_1 () | |||
| 128 | staticpro (&Qunsplittable); | 128 | staticpro (&Qunsplittable); |
| 129 | Qmenu_bar_lines = intern ("menu-bar-lines"); | 129 | Qmenu_bar_lines = intern ("menu-bar-lines"); |
| 130 | staticpro (&Qmenu_bar_lines); | 130 | staticpro (&Qmenu_bar_lines); |
| 131 | Qtoolbar_lines = intern ("toolbar-lines"); | 131 | Qtool_bar_lines = intern ("tool-bar-lines"); |
| 132 | staticpro (&Qtoolbar_lines); | 132 | staticpro (&Qtool_bar_lines); |
| 133 | Qwidth = intern ("width"); | 133 | Qwidth = intern ("width"); |
| 134 | staticpro (&Qwidth); | 134 | staticpro (&Qwidth); |
| 135 | Qx = intern ("x"); | 135 | Qx = intern ("x"); |
| @@ -329,10 +329,10 @@ make_frame (mini_p) | |||
| 329 | f->namebuf = 0; | 329 | f->namebuf = 0; |
| 330 | f->title = Qnil; | 330 | f->title = Qnil; |
| 331 | f->menu_bar_window = Qnil; | 331 | f->menu_bar_window = Qnil; |
| 332 | f->toolbar_window = Qnil; | 332 | f->tool_bar_window = Qnil; |
| 333 | f->desired_toolbar_items = f->current_toolbar_items = Qnil; | 333 | f->desired_tool_bar_items = f->current_tool_bar_items = Qnil; |
| 334 | f->desired_toolbar_string = f->current_toolbar_string = Qnil; | 334 | f->desired_tool_bar_string = f->current_tool_bar_string = Qnil; |
| 335 | f->n_desired_toolbar_items = f->n_current_toolbar_items = 0; | 335 | f->n_desired_tool_bar_items = f->n_current_tool_bar_items = 0; |
| 336 | 336 | ||
| 337 | root_window = make_window (); | 337 | root_window = make_window (); |
| 338 | if (mini_p) | 338 | if (mini_p) |