aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emulation/cua-base.el11
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.
423Only 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.
428Also used to indicate that rectangle padding is in effect." 429Also used to indicate that rectangle padding is in effect.
430Only 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.
434Will change cursor color to specified color if string." 436Will change cursor color to specified color if string.
437Only 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
851With no prefix argument, clear mark if already set. Otherwise, set 854With no prefix argument, clear mark if already set. Otherwise, set
852mark, and push old mark position on local mark ring; also push mark on 855mark, and push old mark position on local mark ring; also push mark on
853global mark ring if last mark was set in another buffer. 856global mark ring if last mark was set in another buffer.
854 857
855With argument, jump to mark, and pop a new position for mark off 858With argument, jump to mark, and pop a new position for mark off
856the local mark ring \(this does not affect the global mark ring\). 859the local mark ring \(this does not affect the global mark ring\).