diff options
| author | Kim F. Storm | 2004-04-13 21:46:30 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-04-13 21:46:30 +0000 |
| commit | 3ffc8a8a0dfa820b051d04b32416ba3812c6aaba (patch) | |
| tree | 3344f3f9182b1cde88d59fc90568a09a8a58306b /lisp/emulation | |
| parent | ed5273154416d4d070f9c4aeedbe7931d7812e4a (diff) | |
| download | emacs-3ffc8a8a0dfa820b051d04b32416ba3812c6aaba.tar.gz emacs-3ffc8a8a0dfa820b051d04b32416ba3812c6aaba.zip | |
(cua-read-only-cursor-color)
(cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/cua-base.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 67cfec61784..24f95ec21ea 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el | |||
| @@ -419,19 +419,22 @@ Default is to load cursor color from initial or default frame parameters." | |||
| 419 | :group 'cua) | 419 | :group 'cua) |
| 420 | 420 | ||
| 421 | (defcustom cua-read-only-cursor-color "darkgreen" | 421 | (defcustom cua-read-only-cursor-color "darkgreen" |
| 422 | "*Cursor color used in read-only buffers, if non-nil." | 422 | "*Cursor color used in read-only buffers, if non-nil. |
| 423 | Only used when `cua-enable-cursor-indications' is non-nil." | ||
| 423 | :type 'color | 424 | :type 'color |
| 424 | :group 'cua) | 425 | :group 'cua) |
| 425 | 426 | ||
| 426 | (defcustom cua-overwrite-cursor-color "yellow" | 427 | (defcustom cua-overwrite-cursor-color "yellow" |
| 427 | "*Cursor color used when overwrite mode is set, if non-nil. | 428 | "*Cursor color used when overwrite mode is set, if non-nil. |
| 428 | Also used to indicate that rectangle padding is in effect." | 429 | Also used to indicate that rectangle padding is in effect. |
| 430 | Only used when `cua-enable-cursor-indications' is non-nil." | ||
| 429 | :type 'color | 431 | :type 'color |
| 430 | :group 'cua) | 432 | :group 'cua) |
| 431 | 433 | ||
| 432 | (defcustom cua-global-mark-cursor-color "cyan" | 434 | (defcustom cua-global-mark-cursor-color "cyan" |
| 433 | "*Indication for active global mark. | 435 | "*Indication for active global mark. |
| 434 | Will change cursor color to specified color if string." | 436 | Will change cursor color to specified color if string. |
| 437 | Only used when `cua-enable-cursor-indications' is non-nil." | ||
| 435 | :type 'color | 438 | :type 'color |
| 436 | :group 'cua) | 439 | :group 'cua) |
| 437 | 440 | ||
| @@ -850,7 +853,7 @@ of text." | |||
| 850 | 853 | ||
| 851 | With no prefix argument, clear mark if already set. Otherwise, set | 854 | With no prefix argument, clear mark if already set. Otherwise, set |
| 852 | mark, and push old mark position on local mark ring; also push mark on | 855 | mark, and push old mark position on local mark ring; also push mark on |
| 853 | global mark ring if last mark was set in another buffer. | 856 | global mark ring if last mark was set in another buffer. |
| 854 | 857 | ||
| 855 | With argument, jump to mark, and pop a new position for mark off | 858 | With argument, jump to mark, and pop a new position for mark off |
| 856 | the local mark ring \(this does not affect the global mark ring\). | 859 | the local mark ring \(this does not affect the global mark ring\). |