Function: mouse-drag-region-shift-adjust

mouse-drag-region-shift-adjust is an interactive and byte-compiled function defined in mouse.el.gz.

Signature

(mouse-drag-region-shift-adjust START-EVENT)

Documentation

Adjust the already active region while dragging the mouse.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defun mouse-drag-region-shift-adjust (start-event)
  "Adjust the already active region while dragging the mouse."
  (interactive "e")
  ;; Give temporary modes such as isearch a chance to turn off.
  (run-hooks 'mouse-leave-buffer-hook)
  (ignore-preserving-kill-region)
  (setq mouse-shift-adjust-point
        (or (and (region-active-p) (mark t)) (point)))
  (mouse-drag-track start-event))