Function: 5x5-set-cell

5x5-set-cell is a byte-compiled function defined in 5x5.el.gz.

Signature

(5x5-set-cell GRID Y X VALUE)

Documentation

Set the value of cell X,Y in GRID to VALUE.

Source Code

;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-set-cell (grid y x value)
  "Set the value of cell X,Y in GRID to VALUE."
  (aset (aref grid y) x value))