Function: 5x5-draw-grid-end
5x5-draw-grid-end is a byte-compiled function defined in 5x5.el.gz.
Signature
(5x5-draw-grid-end)
Documentation
Draw the top/bottom of the grid.
Source Code
;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-draw-grid-end ()
"Draw the top/bottom of the grid."
(insert "+")
(dotimes (_ 5x5-grid-size)
(insert "-" (make-string 5x5-x-scale ?-)))
(insert "-+ "))