]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct buffer): New members fringe_indicator_alist and
authorKim F. Storm <storm@cua.dk>
Mon, 20 Feb 2006 22:14:12 +0000 (22:14 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 20 Feb 2006 22:14:12 +0000 (22:14 +0000)
fringe_cursor_alist.

src/buffer.h

index 737877f15de2f3ba6566fde3ac5e113879bb01aa..60aa3e7aaedf3ffc5a65f2338ac3e9ed42792c06 100644 (file)
@@ -739,6 +739,12 @@ struct buffer
   /* Non-nil means indicate buffer boundaries and scrolling.  */
   Lisp_Object indicate_buffer_boundaries;
 
+  /* Logical to physical fringe bitmap mappings.  */
+  Lisp_Object fringe_indicator_alist;
+
+  /* Logical to physical cursor bitmap mappings.  */
+  Lisp_Object fringe_cursor_alist;
+
   /* Time stamp updated each time this buffer is displayed in a window.  */
   Lisp_Object display_time;