comparison lisp/emulation/cua-base.el @ 54851:99eea8becc4f

(cua-read-only-cursor-color) (cua-overwrite-cursor-color, cua-global-mark-cursor-color): Doc fix.
author Kim F. Storm <storm@cua.dk>
date Tue, 13 Apr 2004 21:46:30 +0000
parents cf6233022d1d
children eb737a4709cb
comparison
equal deleted inserted replaced
54850:b51ae0b3fd1b 54851:99eea8becc4f
417 :initialize 'custom-initialize-default 417 :initialize 'custom-initialize-default
418 :type 'color 418 :type 'color
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
438 441
439 ;;; Rectangle support is in cua-rect.el 442 ;;; Rectangle support is in cua-rect.el
848 (defun cua-set-mark (&optional arg) 851 (defun cua-set-mark (&optional arg)
849 "Set mark at where point is, clear mark, or jump to mark. 852 "Set mark at where point is, clear mark, or jump to mark.
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\).
857 Use \\[pop-global-mark] to jump to a mark off the global mark ring 860 Use \\[pop-global-mark] to jump to a mark off the global mark ring
858 \(see `pop-global-mark'\). 861 \(see `pop-global-mark'\).