Function: gomoku-move-ne
gomoku-move-ne is an interactive and byte-compiled function defined in
gomoku.el.gz.
Signature
(gomoku-move-ne)
Documentation
Move point North East on the Gomoku board.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
(defun gomoku-move-ne ()
"Move point North East on the Gomoku board."
(interactive nil gomoku-mode)
(gomoku-move-up)
(gomoku-move-right))