Function: gomoku-move-right

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

Signature

(gomoku-move-right)

Documentation

Move point right one column on the Gomoku board.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
;; forward-char and backward-char don't always move the right number
;; of characters. Also, these functions check if you're on the edge of
;; the screen.
(defun gomoku-move-right ()
  "Move point right one column on the Gomoku board."
  (interactive nil gomoku-mode)
  (when (< (gomoku-point-x) gomoku-board-width)
    (forward-char gomoku-square-width)))