Function: set-mouse-color

set-mouse-color is an interactive and byte-compiled function defined in frame.el.gz.

Signature

(set-mouse-color COLOR-NAME)

Documentation

Set the color of the mouse pointer of the selected frame to COLOR-NAME.

When called interactively, prompt for the name of the color to use. To get the frame's current mouse color, use frame-parameters.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun set-mouse-color (color-name)
  "Set the color of the mouse pointer of the selected frame to COLOR-NAME.
When called interactively, prompt for the name of the color to use.
To get the frame's current mouse color, use `frame-parameters'."
  (interactive (list (read-color "Mouse color: ")))
  (modify-frame-parameters (selected-frame)
			   (list (cons 'mouse-color
				       (or color-name
					   (cdr (assq 'mouse-color
						      (frame-parameters))))))))