Function: mwheel-filter-click-events

mwheel-filter-click-events is a byte-compiled function defined in mwheel.el.gz.

Signature

(mwheel-filter-click-events)

Documentation

Discard mouse-wheel-click-event while scrolling the mouse.

Source Code

;; Defined in /usr/src/emacs/lisp/mwheel.el.gz
(defun mwheel-filter-click-events ()
  "Discard `mouse-wheel-click-event' while scrolling the mouse."
  (if (eq (event-basic-type last-input-event) mouse-wheel-click-event)
      (setq this-command 'ignore)))