# HG changeset patch # User Kim F. Storm # Date 1053813309 0 # Node ID 6a9e67f99d23064c52df4b4ecdd3f52430e36f76 # Parent 17af4bfeb062da14d99c9be99298e4d996b4b2bd (struct buffer): Rename members measured in columns: left_margin_width to left_margin_cols, right_margin_width to right_margin_cols. All uses changed. New members left_fringe_width, right_fringe_width, fringes_outside_margins for per-buffer fringe settings. New members scroll_bar_width and vertical_scroll_bar_type for per-buffer scroll bar settings. diff -r 17af4bfeb062 -r 6a9e67f99d23 src/buffer.h --- a/src/buffer.h Sat May 24 21:54:43 2003 +0000 +++ b/src/buffer.h Sat May 24 21:55:09 2003 +0000 @@ -715,7 +715,19 @@ /* Widths of left and right marginal areas for windows displaying this buffer. */ - Lisp_Object left_margin_width, right_margin_width; + Lisp_Object left_margin_cols, right_margin_cols; + + /* Widths of left and right fringe areas for windows displaying + this buffer. */ + Lisp_Object left_fringe_width, right_fringe_width; + + /* Non-nil means fringes are drawn outside display margins; + othersize draw them between margin areas and text. */ + Lisp_Object fringes_outside_margins; + + /* Width and type of scroll bar areas for windows displaying + this buffer. */ + Lisp_Object scroll_bar_width, vertical_scroll_bar_type; /* Non-nil means indicate lines not displaying text (in a style like vi). */