summaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2001-12-01 01:14:09 +0000
committerKim F. Storm <storm@cua.dk>2001-12-01 01:14:09 +0000
commit8432bb78a14e459397f1d8402b3cbcecf6ce9b65 (patch)
tree29e36dcb5d9c1f1de48f19a2aef8e5e7c80e7974 /src/frame.h
parent21bf0d6c502a87fc6097b11064780afa479f481c (diff)
downloademacs-8432bb78a14e459397f1d8402b3cbcecf6ce9b65.tar.gz
(struct frame): Remove trunc_area_pixel_width and trunc_area_cols fields.
(Qleft_fringe, Qright_fringe): Declare. (FRAME_RIGHT_FRINGE_WIDTH): New macro.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/frame.h b/src/frame.h
index db9b8fca689..4d40ad9c865 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -354,9 +354,6 @@ struct frame
int scroll_bar_pixel_width;
int scroll_bar_cols;
- /* Width of area for drawing truncation marks and overlay arrow. */
- int trunc_area_pixel_width, trunc_area_cols;
-
/* The baud rate that was used to calculate costs for this frame. */
int cost_calculation_baud_rate;
@@ -646,6 +643,7 @@ typedef struct frame *FRAME_PTR;
extern Lisp_Object Qframep, Qframe_live_p, Qicon;
+extern Lisp_Object Qleft_fringe, Qright_fringe;
extern struct frame *last_nonminibuf_frame;
@@ -729,12 +727,15 @@ extern Lisp_Object selected_frame;
(FRAME_WINDOW_P (F) ? FRAME_X_FRINGE_WIDTH (F) : 0)
#define FRAME_LEFT_FRINGE_WIDTH(F) \
(FRAME_WINDOW_P (F) ? FRAME_X_LEFT_FRINGE_WIDTH (F) : 0)
+#define FRAME_RIGHT_FRINGE_WIDTH(F) \
+ (FRAME_WINDOW_P (F) ? FRAME_X_RIGHT_FRINGE_WIDTH (F) : 0)
#else /* not HAVE_WINDOW_SYSTEM */
#define FRAME_FRINGE_WIDTH(F) 0
#define FRAME_FRINGE_COLS(F) 0
#define FRAME_LEFT_FRINGE_WIDTH(F) 0
+#define FRAME_RIGHT_FRINGE_WIDTH(F) 0
#endif /* not HAVE_WINDOW_SYSTEM */