diff options
| author | Richard M. Stallman | 2005-05-02 17:09:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-02 17:09:13 +0000 |
| commit | 55806be17d22ad5970e05ed06005f8ae04bc7837 (patch) | |
| tree | 5d4938cfe90f8ce84c9a6ea5a2cd5e4d2f8e51c3 /src | |
| parent | 7695b656d9262e9ccc402c2342ba595358b7b665 (diff) | |
| download | emacs-55806be17d22ad5970e05ed06005f8ae04bc7837.tar.gz emacs-55806be17d22ad5970e05ed06005f8ae04bc7837.zip | |
(struct buffer): Add cursor_in_non_selected_windows slot.
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.h | 5 |
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 | |||
| 761 | /* An integer > 0 means put that number of pixels below text lines | 761 | /* An integer > 0 means put that number of pixels below text lines |
| 762 | in the display of this buffer. */ | 762 | in the display of this buffer. */ |
| 763 | Lisp_Object extra_line_spacing; | 763 | Lisp_Object extra_line_spacing; |
| 764 | |||
| 765 | /* *Cursor type to display in non-selected windows. | ||
| 766 | t means to use hollow box cursor. | ||
| 767 | See `cursor-type' for other values. */ | ||
| 768 | Lisp_Object cursor_in_non_selected_windows; | ||
| 764 | }; | 769 | }; |
| 765 | 770 | ||
| 766 | 771 | ||