aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 3c29019554c..fd989925976 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -694,10 +694,12 @@ struct buffer
694 othersize draw them between margin areas and text. */ 694 othersize draw them between margin areas and text. */
695 Lisp_Object INTERNAL_FIELD (fringes_outside_margins); 695 Lisp_Object INTERNAL_FIELD (fringes_outside_margins);
696 696
697 /* Width and type of scroll bar areas for windows displaying 697 /* Width, height and types of scroll bar areas for windows displaying
698 this buffer. */ 698 this buffer. */
699 Lisp_Object INTERNAL_FIELD (scroll_bar_width); 699 Lisp_Object INTERNAL_FIELD (scroll_bar_width);
700 Lisp_Object INTERNAL_FIELD (scroll_bar_height);
700 Lisp_Object INTERNAL_FIELD (vertical_scroll_bar_type); 701 Lisp_Object INTERNAL_FIELD (vertical_scroll_bar_type);
702 Lisp_Object INTERNAL_FIELD (horizontal_scroll_bar_type);
701 703
702 /* Non-nil means indicate lines not displaying text (in a style 704 /* Non-nil means indicate lines not displaying text (in a style
703 like vi). */ 705 like vi). */
@@ -1135,7 +1137,8 @@ extern Lisp_Object Qbefore_change_functions;
1135extern Lisp_Object Qafter_change_functions; 1137extern Lisp_Object Qafter_change_functions;
1136extern Lisp_Object Qfirst_change_hook; 1138extern Lisp_Object Qfirst_change_hook;
1137extern Lisp_Object Qpriority, Qbefore_string, Qafter_string; 1139extern Lisp_Object Qpriority, Qbefore_string, Qafter_string;
1138extern Lisp_Object Qchoice, Qrange, Qleft, Qright, Qvertical_scroll_bar; 1140extern Lisp_Object Qchoice, Qrange, Qleft, Qright;
1141extern Lisp_Object Qvertical_scroll_bar, Qhorizontal_scroll_bar;
1139 1142
1140/* FOR_EACH_LIVE_BUFFER (LIST_VAR, BUF_VAR) followed by a statement is 1143/* FOR_EACH_LIVE_BUFFER (LIST_VAR, BUF_VAR) followed by a statement is
1141 a `for' loop which iterates over the buffers from Vbuffer_alist. */ 1144 a `for' loop which iterates over the buffers from Vbuffer_alist. */