Function: mouse-avoidance-set-pointer-shape

mouse-avoidance-set-pointer-shape is a byte-compiled function defined in avoid.el.gz.

Signature

(mouse-avoidance-set-pointer-shape SHAPE)

Documentation

Set the shape of the mouse pointer to SHAPE.

Source Code

;; Defined in /usr/src/emacs/lisp/avoid.el.gz
;;; Functions:

(defsubst mouse-avoidance-set-pointer-shape (shape)
  "Set the shape of the mouse pointer to SHAPE."
  (when (boundp 'x-pointer-shape)
    (setq x-pointer-shape shape)
    (set-mouse-color nil)))