diff options
| author | Gerd Moellmann | 2000-03-26 16:27:11 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-26 16:27:11 +0000 |
| commit | 19d1bc27d323a55ea6d57d6d13786e5bc5787f73 (patch) | |
| tree | 29644529286108d65e40123782f4d1d43956ec05 | |
| parent | bb2ec97602df08d90f26e02f3d97b429d900d419 (diff) | |
| download | emacs-19d1bc27d323a55ea6d57d6d13786e5bc5787f73.tar.gz emacs-19d1bc27d323a55ea6d57d6d13786e5bc5787f73.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 9 |
2 files changed, 19 insertions, 0 deletions
| @@ -1068,6 +1068,16 @@ Note that +++ before an item means the Lisp manual has been updated. | |||
| 1068 | When you add a new item, please add it without either +++ or --- | 1068 | When you add a new item, please add it without either +++ or --- |
| 1069 | so I will know I still need to look at it -- rms. | 1069 | so 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 | ||
| 1072 | cursor to use in windows displaying a buffer. Values are interpreted | ||
| 1073 | as 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 |
| 1072 | an open parenthesis in column 0 is considered to be the start of a | 1082 | an open parenthesis in column 0 is considered to be the start of a |
| 1073 | defun. If set, the default, it is considered a defun start. If not | 1083 | defun. 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 @@ | |||
| 1 | 2000-03-26 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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. |