Function: bubbles--grid-width
bubbles--grid-width is a byte-compiled function defined in
bubbles.el.gz.
Signature
(bubbles--grid-width)
Documentation
Return the grid width for the current game theme.
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
;; ======================================================================
;; Functions
(defsubst bubbles--grid-width ()
"Return the grid width for the current game theme."
(car (pcase bubbles-game-theme
('easy
bubbles--grid-small)
('medium
bubbles--grid-medium)
('difficult
bubbles--grid-large)
('hard
bubbles--grid-huge)
('user-defined
bubbles-grid-size))))