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/snake.el | |
parent | e1c31ddba8d6832cee2fe0b565fa0414b91819b9 (diff) | |
download | emacs-c83c96545bef192935a4681aa7a9361c8454ea5a.tar.gz emacs-c83c96545bef192935a4681aa7a9361c8454ea5a.tar.bz2 emacs-c83c96545bef192935a4681aa7a9361c8454ea5a.zip |
* 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/snake.el')
-rw-r--r-- | lisp/play/snake.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/snake.el b/lisp/play/snake.el index 71c460feae5..e676d734755 100644 --- a/lisp/play/snake.el +++ b/lisp/play/snake.el @@ -385,7 +385,7 @@ Snake mode keybindings: (gamegrid-init (snake-display-options)) - (run-hooks 'snake-mode-hook)) + (run-mode-hooks 'snake-mode-hook)) ;;;###autoload (defun snake () |