Mercurial > emacs
comparison src/buffer.c @ 90159:08185296b491
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-44
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 272-288)
- src/xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field.
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 67)
- Update from CVS
| author | Miles Bader <miles@gnu.org> |
|---|---|
| date | Thu, 05 May 2005 00:04:55 +0000 |
| parents | 146c086df160 bc82609e1655 |
| children | 62afea0771d8 |
comparison
equal
deleted
inserted
replaced
| 90158:bf4846baba9a | 90159:08185296b491 |
|---|---|
| 5082 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx; | 5082 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx; |
| 5083 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx; | 5083 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx; |
| 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) |
| 5090 abort (); | 5091 abort (); |
| 5091 last_per_buffer_idx = idx; | 5092 last_per_buffer_idx = idx; |
| 5952 doc: /* Additional space to put between lines when displaying a buffer. | 5953 doc: /* Additional space to put between lines when displaying a buffer. |
| 5953 The space is measured in pixels, and put below lines on window systems. | 5954 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; |
| 5960 | 5966 |
| 5961 defsubr (&Sbuffer_live_p); | 5967 defsubr (&Sbuffer_live_p); |
