comparison src/buffer.h @ 51191:6a9e67f99d23

(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.
author Kim F. Storm <storm@cua.dk>
date Sat, 24 May 2003 21:55:09 +0000
parents 4135e9f40991
children 52d50e52438f
comparison
equal deleted inserted replaced
51190:17af4bfeb062 51191:6a9e67f99d23
713 /* Incremented each time the buffer is displayed in a window. */ 713 /* Incremented each time the buffer is displayed in a window. */
714 Lisp_Object display_count; 714 Lisp_Object display_count;
715 715
716 /* Widths of left and right marginal areas for windows displaying 716 /* Widths of left and right marginal areas for windows displaying
717 this buffer. */ 717 this buffer. */
718 Lisp_Object left_margin_width, right_margin_width; 718 Lisp_Object left_margin_cols, right_margin_cols;
719
720 /* Widths of left and right fringe areas for windows displaying
721 this buffer. */
722 Lisp_Object left_fringe_width, right_fringe_width;
723
724 /* Non-nil means fringes are drawn outside display margins;
725 othersize draw them between margin areas and text. */
726 Lisp_Object fringes_outside_margins;
727
728 /* Width and type of scroll bar areas for windows displaying
729 this buffer. */
730 Lisp_Object scroll_bar_width, vertical_scroll_bar_type;
719 731
720 /* Non-nil means indicate lines not displaying text (in a style 732 /* Non-nil means indicate lines not displaying text (in a style
721 like vi). */ 733 like vi). */
722 Lisp_Object indicate_empty_lines; 734 Lisp_Object indicate_empty_lines;
723 735