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