Function: 5x5-last

5x5-last is an interactive and byte-compiled function defined in 5x5.el.gz.

Signature

(5x5-last)

Documentation

Move to the last cell.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-last ()
  "Move to the last cell."
  (interactive nil 5x5-mode)
  (setq 5x5-x-pos (1- 5x5-grid-size)
        5x5-y-pos (1- 5x5-grid-size))
  (5x5-position-cursor))