Function: cursor-sensor-move-to-tangible
cursor-sensor-move-to-tangible is a byte-compiled function defined in
cursor-sensor.el.gz.
Signature
(cursor-sensor-move-to-tangible WINDOW)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cursor-sensor.el.gz
(defun cursor-sensor-move-to-tangible (window)
(let* ((curpos (window-point window))
(newpos (cursor-sensor-tangible-pos curpos window)))
(when newpos (set-window-point window newpos))
(set-window-parameter window 'cursor-intangible--last-point
(or newpos curpos))))