# HG changeset patch # User Kim F. Storm # Date 1140473652 0 # Node ID 7e644ce204685dc05cbb2a53eb5155a18924589c # Parent 7e64cebb0463330cd3bd7559b083b5f11902d9a5 (struct buffer): New members fringe_indicator_alist and fringe_cursor_alist. diff -r 7e64cebb0463 -r 7e644ce20468 src/buffer.h --- a/src/buffer.h Mon Feb 20 22:14:06 2006 +0000 +++ b/src/buffer.h Mon Feb 20 22:14:12 2006 +0000 @@ -739,6 +739,12 @@ /* 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;