aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorKim F. Storm2006-02-20 22:14:12 +0000
committerKim F. Storm2006-02-20 22:14:12 +0000
commit856c2c7397696c0be3701bd2c6109e54d1d98caf (patch)
treeac9c91760e0189fdc6710f7dea1ba3714d755d75 /src/buffer.h
parentc6a46372a3684f4183b8a97da4eef79f9c002b8b (diff)
downloademacs-856c2c7397696c0be3701bd2c6109e54d1d98caf.tar.gz
emacs-856c2c7397696c0be3701bd2c6109e54d1d98caf.zip
(struct buffer): New members fringe_indicator_alist and
fringe_cursor_alist.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 737877f15de..60aa3e7aaed 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -739,6 +739,12 @@ struct buffer
739 /* Non-nil means indicate buffer boundaries and scrolling. */ 739 /* Non-nil means indicate buffer boundaries and scrolling. */
740 Lisp_Object indicate_buffer_boundaries; 740 Lisp_Object indicate_buffer_boundaries;
741 741
742 /* Logical to physical fringe bitmap mappings. */
743 Lisp_Object fringe_indicator_alist;
744
745 /* Logical to physical cursor bitmap mappings. */
746 Lisp_Object fringe_cursor_alist;
747
742 /* Time stamp updated each time this buffer is displayed in a window. */ 748 /* Time stamp updated each time this buffer is displayed in a window. */
743 Lisp_Object display_time; 749 Lisp_Object display_time;
744 750