diff options
author | Lute Kamstra <lute@gnu.org> | 2005-05-26 15:26:09 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-05-26 15:26:09 +0000 |
commit | c83c96545bef192935a4681aa7a9361c8454ea5a (patch) | |
tree | 82fbd3ba79a619b8816418bff0a7c00be17b07cb /lisp/play/solitaire.el | |
parent | e1c31ddba8d6832cee2fe0b565fa0414b91819b9 (diff) |
* play/5x5.el (5x5-mode):
* play/decipher.el (decipher-mode, decipher-stats-mode):
* play/gomoku.el (gomoku-mode):
* play/snake.el (snake-mode):
* play/solitaire.el (solitaire-mode):
* play/tetris.el (tetris-mode): Use run-mode-hooks.
* play/landmark.el (lm-mode):
* play/mpuz.el (mpuz-mode): Use kill-all-local-variables and
run-mode-hooks.
Diffstat (limited to 'lisp/play/solitaire.el')
-rw-r--r-- | lisp/play/solitaire.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/solitaire.el b/lisp/play/solitaire.el index 1dc57b61c6..22dcea4759 100644 --- a/lisp/play/solitaire.el +++ b/lisp/play/solitaire.el @@ -105,7 +105,7 @@ The usual mnemonic keys move the cursor around the board; in addition, (setq truncate-lines t) (setq major-mode 'solitaire-mode) (setq mode-name "Solitaire") - (run-hooks 'solitaire-mode-hook)) + (run-mode-hooks 'solitaire-mode-hook)) (defvar solitaire-stones 0 "Counter for the stones that are still there.") |