Mercurial > emacs
changeset 41717:6ca418a9510b
(struct frame): Remove trunc_area_pixel_width and trunc_area_cols fields.
(Qleft_fringe, Qright_fringe): Declare.
(FRAME_RIGHT_FRINGE_WIDTH): New macro.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Sat, 01 Dec 2001 01:14:09 +0000 |
parents | e467d0e8f243 |
children | 0ef9924a634f |
files | src/frame.h |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.h Sat Dec 01 00:36:12 2001 +0000 +++ b/src/frame.h Sat Dec 01 01:14:09 2001 +0000 @@ -354,9 +354,6 @@ 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 @@ 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 @@ (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 */