Function: landmark-goto-xy
landmark-goto-xy is a byte-compiled function defined in
landmark.el.gz.
Signature
(landmark-goto-xy X Y)
Documentation
Move point to square at X, Y coords.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
(defun landmark-goto-xy (x y)
"Move point to square at X, Y coords."
(goto-char (point-min))
(forward-line (+ landmark-y-offset (* landmark-square-height (1- y))))
(move-to-column (+ landmark-x-offset (* landmark-square-width (1- x)))))