aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-26 16:27:11 +0000
committerGerd Moellmann2000-03-26 16:27:11 +0000
commit19d1bc27d323a55ea6d57d6d13786e5bc5787f73 (patch)
tree29644529286108d65e40123782f4d1d43956ec05
parentbb2ec97602df08d90f26e02f3d97b429d900d419 (diff)
downloademacs-19d1bc27d323a55ea6d57d6d13786e5bc5787f73.tar.gz
emacs-19d1bc27d323a55ea6d57d6d13786e5bc5787f73.zip
*** empty log message ***
-rw-r--r--etc/NEWS10
-rw-r--r--src/ChangeLog9
2 files changed, 19 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 6d6a80f3af6..2d5a12a8828 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1068,6 +1068,16 @@ Note that +++ before an item means the Lisp manual has been updated.
1068When you add a new item, please add it without either +++ or --- 1068When you add a new item, please add it without either +++ or ---
1069so I will know I still need to look at it -- rms. 1069so I will know I still need to look at it -- rms.
1070 1070
1071*** The buffer-local variable cursor-type can be used to specify the
1072cursor to use in windows displaying a buffer. Values are interpreted
1073as follows:
1074
1075 t use the cursor specified for the frame (default)
1076 nil don't display a cursor
1077 `bar' display a bar cursor with default width
1078 (bar . WIDTH) display a bar cursor with width WIDTH
1079 others display a box cursor.
1080
1071** The variable open-paren-in-column-0-is-defun-start controls whether 1081** The variable open-paren-in-column-0-is-defun-start controls whether
1072an open parenthesis in column 0 is considered to be the start of a 1082an open parenthesis in column 0 is considered to be the start of a
1073defun. If set, the default, it is considered a defun start. If not 1083defun. If set, the default, it is considered a defun start. If not
diff --git a/src/ChangeLog b/src/ChangeLog
index 939956fe94c..c6e170ec30b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,14 @@
12000-03-26 Gerd Moellmann <gerd@gnu.org> 12000-03-26 Gerd Moellmann <gerd@gnu.org>
2 2
3 * xterm.c (x_display_and_set_cursor): Choose cursor depending
4 on buffer-local value of cursor_type.
5 (x_draw_bar_cursor): Add parameter WIDTH.
6
7 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
8 (init_buffer_once): Set default cursor_type value to t.
9 Mark cursor_type as local everywhere.
10 (syms_of_buffer): New per-buffer variable cursor-type.
11
3 * buffer.h (struct buffer): Remove member local_var_flags, 12 * buffer.h (struct buffer): Remove member local_var_flags,
4 add local_flags. 13 add local_flags.
5 (MAX_BUFFER_LOCAL_VARS): New macro. 14 (MAX_BUFFER_LOCAL_VARS): New macro.