aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2002-02-16 10:11:10 +0000
committerPavel Janík2002-02-16 10:11:10 +0000
commit3996d07ad063cf83e5636ccac12008f2b8a5a72d (patch)
tree0219b96528507a38136d1619590918e8a03d2282
parent9c94a2e9844813b95ca0755f657bcc83a9d58f19 (diff)
downloademacs-3996d07ad063cf83e5636ccac12008f2b8a5a72d.tar.gz
emacs-3996d07ad063cf83e5636ccac12008f2b8a5a72d.zip
*** empty log message ***
-rw-r--r--etc/NEWS4
-rw-r--r--etc/TODO3
-rw-r--r--lisp/ChangeLog2
-rw-r--r--src/ChangeLog3
4 files changed, 9 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 8f60e988658..356f296e93c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -32,6 +32,10 @@ Emacs with Leim.
32 32
33* Changes in Emacs 21.3 33* Changes in Emacs 21.3
34 34
35** New display feature: focus follows mouse.
36By setting the variable x-autoselect-window to non-nil value, mouse will
37autoselect the window it is in. It is turned off by default.
38
35** The new command `describe-text-at' pops up a buffer with description 39** The new command `describe-text-at' pops up a buffer with description
36of text properties, overlays, and widgets at point, and lets you get 40of text properties, overlays, and widgets at point, and lets you get
37more information about them, by clicking on mouse-sensitive areas or 41more information about them, by clicking on mouse-sensitive areas or
diff --git a/etc/TODO b/etc/TODO
index 109dde2fb28..3a3203bc9f9 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -116,9 +116,6 @@
116 116
117* Make the Lucid menu widget display multilingual text. 117* Make the Lucid menu widget display multilingual text.
118 118
119* Implement, in C, a ``focus follows mouse'' mode that selects a window
120 when the mouse enters it.
121
122* Check what hooks would help Emacspeak -- see the defadvising in W3. 119* Check what hooks would help Emacspeak -- see the defadvising in W3.
123 120
124* Implement some variety of (non-gtk) drag-and-drop support under X. 121* Implement some variety of (non-gtk) drag-and-drop support under X.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 86cd8fce6e7..b0390b0a854 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * cus-start.el (x-autoselect-window): Allow customization.
4
3 * eshell/em-alias.el (eshell-alias-initialize): Do not use 5 * eshell/em-alias.el (eshell-alias-initialize): Do not use
4 make-local-hook. 6 make-local-hook.
5 7
diff --git a/src/ChangeLog b/src/ChangeLog
index 2fbe90fb1ad..1be67b987f6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 2
3 * xterm.c (x-autoselect-window): New variable.
4 (note_mouse_movement): Use it.
5
3 * keyboard.c: Do not include "systime.h" twice. 6 * keyboard.c: Do not include "systime.h" twice.
4 7
52002-02-15 Andreas Schwab <schwab@suse.de> 82002-02-15 Andreas Schwab <schwab@suse.de>