diff options
| author | Miles Bader | 2005-05-05 00:04:55 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-05-05 00:04:55 +0000 |
| commit | cca4e3b099ec4c3f4a36fd0cb865c618a5589069 (patch) | |
| tree | 711e73e53dbe1ab3a59b53fb56a10836e777b43e /src/buffer.c | |
| parent | d469f5c370dbb6fac0e8d6687b47ccfcf96a13a5 (diff) | |
| parent | d68a5392cafedbe0ee6c3eca0444fce4a58b6cdf (diff) | |
| download | emacs-cca4e3b099ec4c3f4a36fd0cb865c618a5589069.tar.gz emacs-cca4e3b099ec4c3f4a36fd0cb865c618a5589069.zip | |
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
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; |