-;;; solitaire.el --- game of solitaire in Emacs Lisp
+;;; solitaire.el --- game of solitaire in Emacs Lisp -*- lexical-binding: t -*-
;; Copyright (C) 1994, 2001-2020 Free Software Foundation, Inc.
(defcustom solitaire-mode-hook nil
"Hook to run upon entry to Solitaire."
- :type 'hook
- :group 'solitaire)
+ :type 'hook)
(defvar solitaire-mode-map
(let ((map (make-sparse-keymap)))
"Non-nil means check for possible moves after each major change.
This takes a while, so switch this on if you like to be informed when
the game is over, or off, if you are working on a slow machine."
- :type 'boolean
- :group 'solitaire)
+ :type 'boolean)
(defconst solitaire-valid-directions
'(solitaire-left solitaire-right solitaire-up solitaire-down))