diff options
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 d24deb0a9a1..6733cbf0815 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5084,6 +5084,7 @@ init_buffer_once () | |||
| 5084 | XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx; | 5084 | XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx; |
| 5085 | XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx; | 5085 | XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx; |
| 5086 | XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx; | 5086 | XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx; |
| 5087 | XSETFASTINT (buffer_local_flags.cursor_in_non_selected_windows, idx); ++idx; | ||
| 5087 | 5088 | ||
| 5088 | /* Need more room? */ | 5089 | /* Need more room? */ |
| 5089 | if (idx >= MAX_PER_BUFFER_VARS) | 5090 | if (idx >= MAX_PER_BUFFER_VARS) |
| @@ -5954,6 +5955,11 @@ The space is measured in pixels, and put below lines on window systems. | |||
| 5954 | If value is a floating point number, it specifies the spacing relative | 5955 | If value is a floating point number, it specifies the spacing relative |
| 5955 | to the default frame line height. */); | 5956 | to the default frame line height. */); |
| 5956 | 5957 | ||
| 5958 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", | ||
| 5959 | ¤t_buffer->cursor_in_non_selected_windows, Qt, | ||
| 5960 | doc: /* *Cursor type to display in non-selected windows. | ||
| 5961 | t means to use hollow box cursor. See `cursor-type' for other values. */); | ||
| 5962 | |||
| 5957 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, | 5963 | DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions, |
| 5958 | doc: /* List of functions called with no args to query before killing a buffer. */); | 5964 | doc: /* List of functions called with no args to query before killing a buffer. */); |
| 5959 | Vkill_buffer_query_functions = Qnil; | 5965 | Vkill_buffer_query_functions = Qnil; |