diff options
| author | Gerd Moellmann | 2001-02-21 14:10:41 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-21 14:10:41 +0000 |
| commit | ffc9ff0cf5dd18e59780fd7262681b252f3000f0 (patch) | |
| tree | afbd200d363a6850d2e869813125dc6c8f3e3465 | |
| parent | 848c7757ae7848dd4572a9eba1d4140256d29329 (diff) | |
| download | emacs-ffc9ff0cf5dd18e59780fd7262681b252f3000f0.tar.gz emacs-ffc9ff0cf5dd18e59780fd7262681b252f3000f0.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 6 | ||||
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 35 |
3 files changed, 47 insertions, 3 deletions
| @@ -652,10 +652,10 @@ displayed if point is at the end of the line containing the | |||
| 652 | whitespace. | 652 | whitespace. |
| 653 | 653 | ||
| 654 | +++ | 654 | +++ |
| 655 | ** Busy-cursor. | 655 | ** Hourglass pointer |
| 656 | 656 | ||
| 657 | Emacs can optionally display a busy-cursor under X. You can turn the | 657 | Emacs can optionally display an hourglass pointer under X. You can |
| 658 | display on or off by customizing group `cursor'. | 658 | turn the display on or off by customizing group `cursor'. |
| 659 | 659 | ||
| 660 | +++ | 660 | +++ |
| 661 | ** Blinking cursor | 661 | ** Blinking cursor |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 700d5fbd0dc..258cebedfb3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2001-02-21 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * startup.el (fancy-splash-screens): Use display-hourglass | ||
| 4 | instead of display-busy-cursor. | ||
| 5 | |||
| 6 | * frame.el (display-hourglass): Renamed from busy-cursor. | ||
| 7 | (hourglass-delay): Renamed from busy-cursor-delay-seconds. | ||
| 8 | (show-cursor-in-non-selected-windows): Doc fix. | ||
| 9 | |||
| 1 | 2001-02-20 Dave Love <fx@gnu.org> | 10 | 2001-02-20 Dave Love <fx@gnu.org> |
| 2 | 11 | ||
| 3 | * international/utf-8.el: Doc and commentary fixes. | 12 | * international/utf-8.el: Doc and commentary fixes. |
diff --git a/src/ChangeLog b/src/ChangeLog index eeff6cba68c..2253c41fcb6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,38 @@ | |||
| 1 | 2001-02-21 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c, minibuf.c, lread.c, fns.c, eval.c: Use | ||
| 4 | display_hourglass_p, start_hourglass, cancel_hourglass instead of | ||
| 5 | the old names. | ||
| 6 | |||
| 7 | * w32term.h (struct x_output): Rename busy_cursor to | ||
| 8 | hourglass_cursor, busy_window to hourglass_window, busy_p to | ||
| 9 | hourglass_p. | ||
| 10 | |||
| 11 | * msdos.h (struct x_output): Rename busy_window to | ||
| 12 | hourglass_window, busy_p to hourglass_p. | ||
| 13 | |||
| 14 | * xterm.h (struct x_output): Rename busy_cursor to | ||
| 15 | hourglass_cursor, busy_window to hourglass_window, busy_p to | ||
| 16 | hourglass_p. | ||
| 17 | |||
| 18 | * xfns.c: Rename everything containing *busy_cursor* and similar | ||
| 19 | to *hourglass*. | ||
| 20 | (syms_of_w32fns): Rename x-busy-pointer-shape to | ||
| 21 | x-hourglass-pointer-shape, display-busy-cursor to | ||
| 22 | display-hourglass, busy-cursor-delay to hourglass-delay. | ||
| 23 | |||
| 24 | * w32fns.c: Rename everything containing *busy_cursor* and similar | ||
| 25 | to *hourglass*. | ||
| 26 | (syms_of_w32fns): Rename x-busy-pointer-shape to | ||
| 27 | x-hourglass-pointer-shape, display-busy-cursor to | ||
| 28 | display-hourglass, busy-cursor-delay to hourglass-delay. | ||
| 29 | |||
| 30 | * xterm.c (XTread_socket): Test x_output's hourglass_p instead | ||
| 31 | of its busy_p flag. | ||
| 32 | |||
| 33 | * dispextern.h (start_hourglass, cancel_hourglass) | ||
| 34 | (display_hourglass_p): Renamed from *busy_cursor*. | ||
| 35 | |||
| 1 | 2001-02-20 Gerd Moellmann <gerd@gnu.org> | 36 | 2001-02-20 Gerd Moellmann <gerd@gnu.org> |
| 2 | 37 | ||
| 3 | * keyboard.c (read_char): When an event from unread-command-events | 38 | * keyboard.c (read_char): When an event from unread-command-events |