Function: landmark-move-up
landmark-move-up is an interactive and byte-compiled function defined
in landmark.el.gz.
Signature
(landmark-move-up)
Documentation
Move point up one row on the Landmark board.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
(defun landmark-move-up ()
"Move point up one row on the Landmark board."
(interactive)
(if (> (landmark-point-y) 1)
(let ((col (current-column)))
(forward-line (- landmark-square-height))
(move-to-column col))))