diff options
| author | Gerd Moellmann | 2001-02-21 14:08:10 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-21 14:08:10 +0000 |
| commit | a6c411ffc67317b65804d1ba02b4c573b115dd4c (patch) | |
| tree | e4942246731b6f61f4c151e4789ac72690f16c91 | |
| parent | df6c90d8de07af4d38ad1ac2e4b71cddd5717972 (diff) | |
| download | emacs-a6c411ffc67317b65804d1ba02b4c573b115dd4c.tar.gz emacs-a6c411ffc67317b65804d1ba02b4c573b115dd4c.zip | |
(display-hourglass): Renamed from busy-cursor.
(hourglass-delay): Renamed from busy-cursor-delay-seconds.
(show-cursor-in-non-selected-windows): Doc fix.
| -rw-r--r-- | lisp/frame.el | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index b49da6db5b0..3def9a94ae3 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | ;;; frame.el --- multi-frame management independent of window systems. | 1 | ;;; frame.el --- multi-frame management independent of window systems. |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1993, 1994, 1996, 1997, 2000 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001 |
| 4 | ;; Free Software Foundation, Inc. | ||
| 4 | 5 | ||
| 5 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| 6 | ;; Keywords: internal | 7 | ;; Keywords: internal |
| @@ -1179,34 +1180,26 @@ itself as a pre-command hook." | |||
| 1179 | 1180 | ||
| 1180 | 1181 | ||
| 1181 | 1182 | ||
| 1182 | ;;; Busy-cursor. | 1183 | ;;; Hourglass pointer |
| 1183 | 1184 | ||
| 1184 | (defcustom busy-cursor t | 1185 | (defcustom display-hourglass t |
| 1185 | "*Non-nil means show a busy-cursor when running under a window system." | 1186 | "*Non-nil means show an hourglass pointer when running under a window system." |
| 1186 | :tag "Busy-cursor" | 1187 | :tag "Hourglass pointer" |
| 1187 | :type 'boolean | 1188 | :type 'boolean |
| 1188 | :group 'cursor | 1189 | :group 'cursor) |
| 1189 | :get #'(lambda (symbol) display-busy-cursor) | ||
| 1190 | :set #'(lambda (symbol value) | ||
| 1191 | (set-default symbol value) | ||
| 1192 | (setq display-busy-cursor value))) | ||
| 1193 | 1190 | ||
| 1194 | (defcustom busy-cursor-delay-seconds 1 | 1191 | (defcustom hourglass-delay 1 |
| 1195 | "*Seconds to wait before displaying a busy-cursor." | 1192 | "*Seconds to wait before displaying an hourglass pointer." |
| 1196 | :tag "Busy-cursor delay" | 1193 | :tag "Hourglass delay" |
| 1197 | :type 'number | 1194 | :type 'number |
| 1198 | :group 'cursor | 1195 | :group 'cursor) |
| 1199 | :get #'(lambda (symbol) busy-cursor-delay) | ||
| 1200 | :set #'(lambda (symbol value) | ||
| 1201 | (set-default symbol value) | ||
| 1202 | (setq busy-cursor-delay value))) | ||
| 1203 | 1196 | ||
| 1204 | 1197 | ||
| 1205 | (defcustom show-cursor-in-non-selected-windows t | 1198 | (defcustom show-cursor-in-non-selected-windows t |
| 1206 | "*Non-nil means show a hollow box cursor in non-selected-windows. | 1199 | "*Non-nil means show a hollow box cursor in non-selected-windows. |
| 1207 | If nil, don't show a cursor except in the selected window. | 1200 | If nil, don't show a cursor except in the selected window. |
| 1208 | Setting this variable directly has no effect; use custom instead | 1201 | Setting this variable directly has no effect; use custom instead |
| 1209 | (or set the variable `cursor-in-non-selected-windows')." | 1202 | \(or set the variable `cursor-in-non-selected-windows')." |
| 1210 | :tag "Cursor in non-selected windows" | 1203 | :tag "Cursor in non-selected windows" |
| 1211 | :type 'boolean | 1204 | :type 'boolean |
| 1212 | :group 'cursor | 1205 | :group 'cursor |