Function: gomoku-move-down

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

Signature

(gomoku-move-down)

Documentation

Move point down one row on the Gomoku board.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
;; previous-line and next-line don't work right with intangible newlines
(defun gomoku-move-down ()
  "Move point down one row on the Gomoku board."
  (interactive nil gomoku-mode)
  (when (< (gomoku-point-y) gomoku-board-height)
    (let ((column (current-column)))
      (forward-line gomoku-square-height)
      (move-to-column column))))