[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/buffer.c
From: |
Kim F . Storm |
Subject: |
[Emacs-diffs] Changes to emacs/src/buffer.c |
Date: |
Wed, 04 May 2005 18:10:14 -0400 |
Index: emacs/src/buffer.c
diff -c emacs/src/buffer.c:1.478 emacs/src/buffer.c:1.479
*** emacs/src/buffer.c:1.478 Mon May 2 17:10:08 2005
--- emacs/src/buffer.c Wed May 4 22:10:14 2005
***************
*** 1,6 ****
/* Buffer manipulation primitives for GNU Emacs.
! Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99,
! 2000, 01, 02, 03, 04, 2005 Free Software Foundation, Inc.
This file is part of GNU Emacs.
--- 1,6 ----
/* Buffer manipulation primitives for GNU Emacs.
! Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99,
! 2000, 01, 02, 03, 04, 2005 Free Software Foundation, Inc.
This file is part of GNU Emacs.
***************
*** 4972,4977 ****
--- 4972,4978 ----
buffer_defaults.direction_reversed = Qnil;
buffer_defaults.cursor_type = Qt;
buffer_defaults.extra_line_spacing = Qnil;
+ buffer_defaults.cursor_in_non_selected_windows = Qt;
#ifdef DOS_NT
buffer_defaults.buffer_file_type = Qnil; /* TEXT */
***************
*** 5260,5265 ****
--- 5261,5271 ----
doc: /* Default value of `line-spacing' for buffers that
don't override it.
This is the same as (default-value 'line-spacing). */);
+ DEFVAR_LISP_NOPRO ("default-cursor-in-non-selected-windows",
+ &buffer_defaults.cursor_in_non_selected_windows,
+ doc: /* Default value of `cursor-in-non-selected-windows'.
+ This is the same as (default-value 'cursor-in-non-selected-windows). */);
+
DEFVAR_LISP_NOPRO ("default-abbrev-mode",
&buffer_defaults.abbrev_mode,
doc: /* Default value of `abbrev-mode' for buffers that do
not override it.
***************
*** 5940,5946 ****
to the default frame line height. */);
DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
! ¤t_buffer->cursor_in_non_selected_windows, Qt,
doc: /* *Cursor type to display in non-selected windows.
t means to use hollow box cursor. See `cursor-type' for other values. */);
--- 5946,5952 ----
to the default frame line height. */);
DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
! ¤t_buffer->cursor_in_non_selected_windows, Qnil,
doc: /* *Cursor type to display in non-selected windows.
t means to use hollow box cursor. See `cursor-type' for other values. */);