diff options
| author | Gerd Moellmann | 2000-11-22 16:28:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-22 16:28:11 +0000 |
| commit | e3303a238324391d5be74bc3d9fba1c20b3a7848 (patch) | |
| tree | 3f8c2baa9f67f99f56ca04c02d92f15e5cc3a108 /src | |
| parent | 6db746da2610c269978491601fb1ddb579265e1b (diff) | |
| download | emacs-e3303a238324391d5be74bc3d9fba1c20b3a7848.tar.gz emacs-e3303a238324391d5be74bc3d9fba1c20b3a7848.zip | |
(struct frame): Members desired_tool_bar_items,
current_tool_bar_items, n_desired_tool_bar_items,
n_current_tool_bar_items removed. Add tool_bar_items and
n_tool_bar_items.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/frame.h b/src/frame.h index a8c759fe407..5db5ebd3019 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | #define _XFRAME_H_ | 4 | #define _XFRAME_H_ |
| 5 | 5 | ||
| 6 | /* Define frame-object for GNU Emacs. | 6 | /* Define frame-object for GNU Emacs. |
| 7 | Copyright (C) 1993, 1994 Free Software Foundation, Inc. | 7 | Copyright (C) 1993, 1994, 1999, 2000 Free Software Foundation, Inc. |
| 8 | 8 | ||
| 9 | This file is part of GNU Emacs. | 9 | This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -179,7 +179,7 @@ struct frame | |||
| 179 | Lisp_Object tool_bar_window; | 179 | Lisp_Object tool_bar_window; |
| 180 | 180 | ||
| 181 | /* Desired and current tool-bar items. */ | 181 | /* Desired and current tool-bar items. */ |
| 182 | Lisp_Object desired_tool_bar_items, current_tool_bar_items; | 182 | Lisp_Object tool_bar_items; |
| 183 | 183 | ||
| 184 | /* Desired and current contents displayed in tool_bar_window. */ | 184 | /* Desired and current contents displayed in tool_bar_window. */ |
| 185 | Lisp_Object desired_tool_bar_string, current_tool_bar_string; | 185 | Lisp_Object desired_tool_bar_string, current_tool_bar_string; |
| @@ -206,8 +206,7 @@ struct frame | |||
| 206 | /* Margin at the top of the frame. Used to display the tool-bar. */ | 206 | /* Margin at the top of the frame. Used to display the tool-bar. */ |
| 207 | int tool_bar_lines; | 207 | int tool_bar_lines; |
| 208 | 208 | ||
| 209 | int n_desired_tool_bar_items; | 209 | int n_tool_bar_items; |
| 210 | int n_current_tool_bar_items; | ||
| 211 | 210 | ||
| 212 | /* A buffer for decode_mode_line. */ | 211 | /* A buffer for decode_mode_line. */ |
| 213 | char *decode_mode_spec_buffer; | 212 | char *decode_mode_spec_buffer; |