aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-24 14:05:02 +0000
committerGerd Moellmann2000-02-24 14:05:02 +0000
commit42088c126a5be232d2eacd23a1f5121e12fcae5f (patch)
treede0006b8bdacd8da1e3f37bc7354dbf2a1cd0a73
parent5b2c5477e0be8c89af94b7bbd7e14153aaf00b32 (diff)
downloademacs-42088c126a5be232d2eacd23a1f5121e12fcae5f.tar.gz
emacs-42088c126a5be232d2eacd23a1f5121e12fcae5f.zip
*** empty log message ***
-rw-r--r--etc/NEWS5
-rw-r--r--lisp/ChangeLog4
-rw-r--r--src/ChangeLog11
3 files changed, 17 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c6347082506..f4029691f17 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -16,9 +16,10 @@ images and toolkit scrollbars. Use the --help option to list them.
16 16
17* Changes in Emacs 21.1 17* Changes in Emacs 21.1
18 18
19** The variable `cursor-in-non-selected-windows' controls how to 19** User-option `show-cursor-in-non-selected-windows' controls how to
20display the cursor in non-selected windows. If nil, no cursor is 20display the cursor in non-selected windows. If nil, no cursor is
21shown, if non-nil a hollow box cursor is shown. 21shown, if non-nil a hollow box cursor is shown. This option can
22be customized.
22 23
23** The variable `echo-keystrokes' may now have a floating point value. 24** The variable `echo-keystrokes' may now have a floating point value.
24 25
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1da4edfcb43..af35aeae13f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-02-24 Gerd Moellmann <gerd@gnu.org>
2
3 * frame.el (show-cursor-in-non-selected-windows): New option.
4
12000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu> 52000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2 6
3 * diary-lib.el (include-other-diary-files): Undo the selective 7 * diary-lib.el (include-other-diary-files): Undo the selective
diff --git a/src/ChangeLog b/src/ChangeLog
index bb90a4835b7..894d80c877f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12000-02-24 Gerd Moellmann <gerd@gnu.org>
2
3 * xterm.c (x_display_and_set_cursor): Display cursor of
4 non-selected windows depending on the setting of
5 cursor_in_non_selected_windows.
6
7 * xdisp.c (cursor_in_non_selected_windows): New variable.
8 (syms_of_xdisp): DEFVAR_BOOL it.
9
12000-02-23 Gerd Moellmann <gerd@gnu.org> 102000-02-23 Gerd Moellmann <gerd@gnu.org>
2 11
3 * data.c (Fstring_to_number): If number is greater than what 12 * data.c (Fstring_to_number): If number is greater than what
@@ -19,7 +28,7 @@
19 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro. 28 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
20 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are 29 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
21 nonzero, treat all multibyte characters as symbol. 30 nonzero, treat all multibyte characters as symbol.
22 (init_syntax_once): Give syntax `word' to all mutlbiyte 31 (init_syntax_once): Give syntax `word' to all multibyte
23 characters. 32 characters.
24 33
252000-02-22 Eli Zaretskii <eliz@is.elta.co.il> 342000-02-22 Eli Zaretskii <eliz@is.elta.co.il>