aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2000-03-21 00:39:29 +0000
committerKenichi Handa2000-03-21 00:39:29 +0000
commit45a962e0d5a00c647c6a27fb97a153009c47ebc2 (patch)
tree7c13a3fbdfa78debf6374a7080f25ce9a2c2a002 /src
parentc08758e259600623e2bee080e637d29745b3400d (diff)
downloademacs-45a962e0d5a00c647c6a27fb97a153009c47ebc2.tar.gz
emacs-45a962e0d5a00c647c6a27fb97a153009c47ebc2.zip
(struct frame): Member `fontset_data' removed.
(FRAME_FONTSET_DATA): Macro removed.
Diffstat (limited to 'src')
-rw-r--r--src/frame.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/frame.h b/src/frame.h
index 26cddf67ab5..724a9ee916b 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -365,11 +365,6 @@ struct frame
365 /* The baud rate that was used to calculate costs for this frame. */ 365 /* The baud rate that was used to calculate costs for this frame. */
366 int cost_calculation_baud_rate; 366 int cost_calculation_baud_rate;
367 367
368 /* A pointer to the data structure containing all information of
369 fontsets associated with this frame. See the comments in
370 fontset.h for more detail. */
371 struct fontset_data *fontset_data;
372
373 /* Nonzero if the mouse has moved on this display 368 /* Nonzero if the mouse has moved on this display
374 since the last time we checked. */ 369 since the last time we checked. */
375 char mouse_moved; 370 char mouse_moved;
@@ -566,7 +561,6 @@ typedef struct frame *FRAME_PTR;
566#define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars) 561#define FRAME_CONDEMNED_SCROLL_BARS(f) ((f)->condemned_scroll_bars)
567#define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items) 562#define FRAME_MENU_BAR_ITEMS(f) ((f)->menu_bar_items)
568#define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate) 563#define FRAME_COST_BAUD_RATE(f) ((f)->cost_calculation_baud_rate)
569#define FRAME_FONTSET_DATA(f) ((f)->fontset_data)
570 564
571/* Return a pointer to the face cache of frame F. */ 565/* Return a pointer to the face cache of frame F. */
572 566