From: Kim F. Storm Date: Mon, 20 Feb 2006 22:14:12 +0000 (+0000) Subject: (struct buffer): New members fringe_indicator_alist and X-Git-Tag: emacs-pretest-22.0.90~3993 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=856c2c7397696c0be3701bd2c6109e54d1d98caf;p=emacs.git (struct buffer): New members fringe_indicator_alist and fringe_cursor_alist. --- 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 /* 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;