summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2005-05-02 17:09:13 +0000
committerRichard M. Stallman <rms@gnu.org>2005-05-02 17:09:13 +0000
commit55806be17d22ad5970e05ed06005f8ae04bc7837 (patch)
tree5d4938cfe90f8ce84c9a6ea5a2cd5e4d2f8e51c3 /src/buffer.h
parent7695b656d9262e9ccc402c2342ba595358b7b665 (diff)
downloademacs-55806be17d22ad5970e05ed06005f8ae04bc7837.tar.gz
(struct buffer): Add cursor_in_non_selected_windows slot.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index bcb293a2e85..08627487c66 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -761,6 +761,11 @@ struct buffer
/* An integer > 0 means put that number of pixels below text lines
in the display of this buffer. */
Lisp_Object extra_line_spacing;
+
+ /* *Cursor type to display in non-selected windows.
+ t means to use hollow box cursor.
+ See `cursor-type' for other values. */
+ Lisp_Object cursor_in_non_selected_windows;
};