Function: 5x5-right
5x5-right is an interactive and byte-compiled function defined in
5x5.el.gz.
Signature
(5x5-right)
Documentation
Move right.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-right ()
"Move right."
(interactive nil 5x5-mode)
(unless (= 5x5-x-pos (1- 5x5-grid-size))
(incf 5x5-x-pos)
(5x5-position-cursor)))