aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorMiles Bader2005-05-12 03:41:19 +0000
committerMiles Bader2005-05-12 03:41:19 +0000
commit6919bf38d2d61b1d502a6548384a992c9106a66d (patch)
tree49a0d6d5a589029bc63ffdc42947c37e76e400e5 /src/buffer.c
parent608b34bf4ad0cd6e06215a4db25969d5391332cf (diff)
parent913d55fe7f6090b4ace4d910c397086607e4e878 (diff)
downloademacs-6919bf38d2d61b1d502a6548384a992c9106a66d.tar.gz
emacs-6919bf38d2d61b1d502a6548384a992c9106a66d.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-51
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 289-301) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 68) - Update from CVS
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 6733cbf0815..d9769ce10ab 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,6 +1,6 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99,
3 2000, 01, 02, 03, 04, 2005 Free Software Foundation, Inc. 3 2000, 01, 02, 03, 04, 2005 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -4988,6 +4988,7 @@ init_buffer_once ()
4988 buffer_defaults.direction_reversed = Qnil; 4988 buffer_defaults.direction_reversed = Qnil;
4989 buffer_defaults.cursor_type = Qt; 4989 buffer_defaults.cursor_type = Qt;
4990 buffer_defaults.extra_line_spacing = Qnil; 4990 buffer_defaults.extra_line_spacing = Qnil;
4991 buffer_defaults.cursor_in_non_selected_windows = Qt;
4991 4992
4992#ifdef DOS_NT 4993#ifdef DOS_NT
4993 buffer_defaults.buffer_file_type = Qnil; /* TEXT */ 4994 buffer_defaults.buffer_file_type = Qnil; /* TEXT */
@@ -5276,6 +5277,11 @@ This is the same as (default-value 'cursor-type). */);
5276 doc: /* Default value of `line-spacing' for buffers that don't override it. 5277 doc: /* Default value of `line-spacing' for buffers that don't override it.
5277This is the same as (default-value 'line-spacing). */); 5278This is the same as (default-value 'line-spacing). */);
5278 5279
5280 DEFVAR_LISP_NOPRO ("default-cursor-in-non-selected-windows",
5281 &buffer_defaults.cursor_in_non_selected_windows,
5282 doc: /* Default value of `cursor-in-non-selected-windows'.
5283This is the same as (default-value 'cursor-in-non-selected-windows). */);
5284
5279 DEFVAR_LISP_NOPRO ("default-abbrev-mode", 5285 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
5280 &buffer_defaults.abbrev_mode, 5286 &buffer_defaults.abbrev_mode,
5281 doc: /* Default value of `abbrev-mode' for buffers that do not override it. 5287 doc: /* Default value of `abbrev-mode' for buffers that do not override it.
@@ -5956,7 +5962,7 @@ If value is a floating point number, it specifies the spacing relative
5956to the default frame line height. */); 5962to the default frame line height. */);
5957 5963
5958 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", 5964 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
5959 &current_buffer->cursor_in_non_selected_windows, Qt, 5965 &current_buffer->cursor_in_non_selected_windows, Qnil,
5960 doc: /* *Cursor type to display in non-selected windows. 5966 doc: /* *Cursor type to display in non-selected windows.
5961t means to use hollow box cursor. See `cursor-type' for other values. */); 5967t means to use hollow box cursor. See `cursor-type' for other values. */);
5962 5968