Function: landmark-move-down

landmark-move-down is an interactive and byte-compiled function defined in landmark.el.gz.

Signature

(landmark-move-down)

Documentation

Move point down one row on the Landmark board.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
;; previous-line and next-line don't work right with intangible newlines
(defun landmark-move-down ()
  "Move point down one row on the Landmark board."
  (interactive)
  (if (< (landmark-point-y) landmark-board-height)
      (let ((col (current-column)))
	(forward-line 1) ;;; landmark-square-height
	(move-to-column col))))