Mercurial > emacs
comparison src/buffer.c @ 62030:bc82609e1655
(syms_of_buffer): Define cursor-in-non-selected-windows.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 02 May 2005 17:10:08 +0000 |
| parents | 9ee6093ffeaf |
| children | a0a348c8b14b 08185296b491 |
comparison
equal
deleted
inserted
replaced
| 62029:12d1ea96b466 | 62030:bc82609e1655 |
|---|---|
| 5066 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx; | 5066 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx; |
| 5067 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx; | 5067 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx; |
| 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) |
| 5074 abort (); | 5075 abort (); |
| 5075 last_per_buffer_idx = idx; | 5076 last_per_buffer_idx = idx; |
| 5936 doc: /* Additional space to put between lines when displaying a buffer. | 5937 doc: /* Additional space to put between lines when displaying a buffer. |
| 5937 The space is measured in pixels, and put below lines on window systems. | 5938 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; |
| 5944 | 5950 |
| 5945 defsubr (&Sbuffer_live_p); | 5951 defsubr (&Sbuffer_live_p); |
