diff options
| author | Richard M. Stallman | 2005-05-02 17:10:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-02 17:10:29 +0000 |
| commit | 0124c5bdea37ac8b42b22472e3a0dcfbf7ea795a (patch) | |
| tree | a79ac3f66d28c1bff200d29228fd4dd8fefb4f39 /src/buffer.c | |
| parent | 55806be17d22ad5970e05ed06005f8ae04bc7837 (diff) | |
| download | emacs-0124c5bdea37ac8b42b22472e3a0dcfbf7ea795a.tar.gz emacs-0124c5bdea37ac8b42b22472e3a0dcfbf7ea795a.zip | |
(syms_of_buffer): Define cursor-in-non-selected-windows.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 1fba9136375..e71c590faae 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5068,6 +5068,7 @@ init_buffer_once () | |||
| 5068 | XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx; | 5068 | XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx; |
| 5069 | XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx; | 5069 | XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx; |
| 5070 | XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx; | 5070 | XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx; |
| 5071 | XSETFASTINT (buffer_local_flags.cursor_in_non_selected_windows, idx); ++idx; | ||
| 5071 | 5072 | ||
| 5072 | /* Need more room? */ | 5073 | /* Need more room? */ |
| 5073 | if (idx >= MAX_PER_BUFFER_VARS) | 5074 | if (idx >= MAX_PER_BUFFER_VARS) |
| @@ -5938,6 +5939,11 @@ The space is measured in pixels, and put below lines on window systems. | |||
| 5938 | If value is a floating point number, it specifies the spacing relative | 5939 | If value is a floating point number, it specifies the spacing relative |
| 5939 | to the default frame line height. */); | 5940 | to the default frame line height. */); |
| 5940 | 5941 | ||
| 5942 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", | ||
| 5943 | ¤t_buffer->cursor_in_non_selected_windows, Qt, | ||
| 5944 | doc: /* *Cursor type to display in non-selected windows. | ||
| 5945 | t means to use hollow box cursor. See `cursor-type' for other values. */); | ||
| 5946 | |||
| 5941 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, | 5947 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, |
| 5942 | doc: /* List of functions called with no args to query before killing a buffer. */); | 5948 | doc: /* List of functions called with no args to query before killing a buffer. */); |
| 5943 | Vkill_buffer_query_functions = Qnil; | 5949 | Vkill_buffer_query_functions = Qnil; |