Function: mwheel-install

mwheel-install is a byte-compiled function defined in mwheel.el.gz.

This function is obsolete since 27.1; use mouse-wheel-mode(var)/mouse-wheel-mode(fun) instead.

Signature

(mwheel-install &optional UNINSTALL)

Documentation

Enable mouse wheel support.

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/mwheel.el.gz
;;; Obsolete.

;;; Compatibility entry point
;; preloaded ;;;###autoload
(defun mwheel-install (&optional uninstall)
  "Enable mouse wheel support."
  (declare (obsolete mouse-wheel-mode "27.1"))
  (mouse-wheel-mode (if uninstall -1 1)))