aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.h
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-05 15:49:07 +0000
committerGerd Moellmann1999-09-05 15:49:07 +0000
commit9ea173e83025644384bad4a4ea697bcb6cf7995e (patch)
treef787c96d61d0fecd60d18e050f8649b6fd77a19d /src/frame.h
parente037b9ecb3c11b1775171da6e9376a5221fefd78 (diff)
downloademacs-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.h')
-rw-r--r--src/frame.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/frame.h b/src/frame.h
index 27a5c9715f5..1bbe48f55e6 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -148,14 +148,14 @@ struct frame
148 toolkit support is available. */ 148 toolkit support is available. */
149 Lisp_Object menu_bar_window; 149 Lisp_Object menu_bar_window;
150 150
151 /* A window used to display the toolbar of a frame. */ 151 /* A window used to display the tool-bar of a frame. */
152 Lisp_Object toolbar_window; 152 Lisp_Object tool_bar_window;
153 153
154 /* Desired and current toolbar items. */ 154 /* Desired and current tool-bar items. */
155 Lisp_Object desired_toolbar_items, current_toolbar_items; 155 Lisp_Object desired_tool_bar_items, current_tool_bar_items;
156 156
157 /* Desired and current contents displayed in toolbar_window. */ 157 /* Desired and current contents displayed in tool_bar_window. */
158 Lisp_Object desired_toolbar_string, current_toolbar_string; 158 Lisp_Object desired_tool_bar_string, current_tool_bar_string;
159 159
160 /* beyond here, there should be no more Lisp_Object components. */ 160 /* beyond here, there should be no more Lisp_Object components. */
161 161
@@ -176,11 +176,11 @@ struct frame
176 be used for output. */ 176 be used for output. */
177 unsigned glyphs_initialized_p : 1; 177 unsigned glyphs_initialized_p : 1;
178 178
179 /* Margin at the top of the frame. Used to display the toolbar. */ 179 /* Margin at the top of the frame. Used to display the tool-bar. */
180 int toolbar_lines; 180 int tool_bar_lines;
181 181
182 int n_desired_toolbar_items; 182 int n_desired_tool_bar_items;
183 int n_current_toolbar_items; 183 int n_current_tool_bar_items;
184 184
185 /* A buffer for decode_mode_line. */ 185 /* A buffer for decode_mode_line. */
186 char *decode_mode_spec_buffer; 186 char *decode_mode_spec_buffer;
@@ -412,14 +412,14 @@ typedef struct frame *FRAME_PTR;
412 These lines are counted in FRAME_HEIGHT. */ 412 These lines are counted in FRAME_HEIGHT. */
413#define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines 413#define FRAME_MENU_BAR_LINES(f) (f)->menu_bar_lines
414 414
415/* Number of lines of frame F used for the toolbar. */ 415/* Number of lines of frame F used for the tool-bar. */
416 416
417#define FRAME_TOOLBAR_LINES(f) (f)->toolbar_lines 417#define FRAME_TOOL_BAR_LINES(f) (f)->tool_bar_lines
418 418
419/* Lines above the top-most window in frame F. */ 419/* Lines above the top-most window in frame F. */
420 420
421#define FRAME_TOP_MARGIN(F) \ 421#define FRAME_TOP_MARGIN(F) \
422 (FRAME_MENU_BAR_LINES (F) + FRAME_TOOLBAR_LINES (F)) 422 (FRAME_MENU_BAR_LINES (F) + FRAME_TOOL_BAR_LINES (F))
423 423
424/* Nonzero if this frame should display a menu bar 424/* Nonzero if this frame should display a menu bar
425 in a way that does not use any text lines. */ 425 in a way that does not use any text lines. */