aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2000-03-12 12:36:51 +0000
committerEli Zaretskii2000-03-12 12:36:51 +0000
commite411ce4be078f9d9846cfff09daf6a2849f362d8 (patch)
tree6079a3241a078f16e16831a064f8aaffef78ece2
parent0fceb73215775a1f02506524d5749c8b8eb6f2da (diff)
downloademacs-e411ce4be078f9d9846cfff09daf6a2849f362d8.tar.gz
emacs-e411ce4be078f9d9846cfff09daf6a2849f362d8.zip
Mention cursor-type support on MS-DOS terminals.
-rw-r--r--etc/NEWS7
-rw-r--r--src/ChangeLog17
2 files changed, 24 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 80f4d96a785..0dec155f20e 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2662,6 +2662,13 @@ temporarily to nil, for example
2662 2662
2663Likewise, an attempt to split a fixed-height window vertically, 2663Likewise, an attempt to split a fixed-height window vertically,
2664or a fixed-width window horizontally results in a error. 2664or a fixed-width window horizontally results in a error.
2665
2666** The cursor-type frame parameter is now supported on MS-DOS
2667terminals. When Emacs starts, it by default changes the cursor shape
2668to a solid box, as it does on Unix. The `cursor-type' frame parameter
2669overrides this as it does on Unix, except that the bar cursor is
2670horizontal rather than vertical (since the MS-DOS display doesn't
2671support a vertical-bar cursor).
2665^L 2672^L
2666* Emacs 20.5 is a bug-fix release with no user-visible changes. 2673* Emacs 20.5 is a bug-fix release with no user-visible changes.
2667 2674
diff --git a/src/ChangeLog b/src/ChangeLog
index 82b285c329f..59d94ce505f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,20 @@
12000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * msdos.c (vga_installed): New function, code moved from
4 dos_set_window_size.
5 (Qbar, Qcursor_type, outside_cursor): New variables.
6 (syms_of_msdos): Intern and staticpro them.
7 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
8 shape used outside Emacs when called for the first time.
9 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
10 cursor shape used outside Emacs.
11 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
12 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
13 type has changed.
14 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
15 parameters specify the cursor. Make qreverse a global
16 variable (renamed to Qreverse).
17
12000-03-09 Gerd Moellmann <gerd@gnu.org> 182000-03-09 Gerd Moellmann <gerd@gnu.org>
2 19
3 * fns.c (Fy_or_n_p): Cancel busy-cursor. 20 * fns.c (Fy_or_n_p): Cancel busy-cursor.