diff options
| author | Pavel Janík | 2002-02-16 10:11:10 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-02-16 10:11:10 +0000 |
| commit | 3996d07ad063cf83e5636ccac12008f2b8a5a72d (patch) | |
| tree | 0219b96528507a38136d1619590918e8a03d2282 | |
| parent | 9c94a2e9844813b95ca0755f657bcc83a9d58f19 (diff) | |
| download | emacs-3996d07ad063cf83e5636ccac12008f2b8a5a72d.tar.gz emacs-3996d07ad063cf83e5636ccac12008f2b8a5a72d.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 4 | ||||
| -rw-r--r-- | etc/TODO | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 3 |
4 files changed, 9 insertions, 3 deletions
| @@ -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. | ||
| 36 | By setting the variable x-autoselect-window to non-nil value, mouse will | ||
| 37 | autoselect 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 |
| 36 | of text properties, overlays, and widgets at point, and lets you get | 40 | of text properties, overlays, and widgets at point, and lets you get |
| 37 | more information about them, by clicking on mouse-sensitive areas or | 41 | more information about them, by clicking on mouse-sensitive areas or |
| @@ -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 @@ | |||
| 1 | 2002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2002-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 @@ | |||
| 1 | 2002-02-16 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2002-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 | ||
| 5 | 2002-02-15 Andreas Schwab <schwab@suse.de> | 8 | 2002-02-15 Andreas Schwab <schwab@suse.de> |