Function: bubbles--shift-mode

bubbles--shift-mode is a byte-compiled function defined in bubbles.el.gz.

Signature

(bubbles--shift-mode)

Documentation

Return the shift mode for the current game theme.

Source Code

;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defsubst bubbles--shift-mode ()
  "Return the shift mode for the current game theme."
  (pcase bubbles-game-theme
    ('easy
     'default)
    ('medium
     'default)
    ('difficult
     'always)
    ('hard
     'always)
    ('user-defined
     bubbles-shift-mode)))