aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c6
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.
5938If value is a floating point number, it specifies the spacing relative 5939If value is a floating point number, it specifies the spacing relative
5939to the default frame line height. */); 5940to the default frame line height. */);
5940 5941
5942 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
5943 &current_buffer->cursor_in_non_selected_windows, Qt,
5944 doc: /* *Cursor type to display in non-selected windows.
5945t 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;