]> git.eshelyaron.com Git - emacs.git/commitdiff
(blackbox-mode): Use run-mode-hooks.
authorLute Kamstra <lute@gnu.org>
Fri, 10 Jun 2005 12:03:06 +0000 (12:03 +0000)
committerLute Kamstra <lute@gnu.org>
Fri, 10 Jun 2005 12:03:06 +0000 (12:03 +0000)
lisp/play/blackbox.el

index 6fad15b8155fb1d32f3cd666f7a62e9c827c1231..02f8cb5eeb01a183a69f5ac63d32860abe0cb38f 100644 (file)
@@ -117,14 +117,14 @@ The usual mnemonic keys move the cursor around the box.
 \\<blackbox-mode-map>\\[bb-bol] and \\[bb-eol] move to the beginning and end of line, respectively.
 
 \\[bb-romp] -- send in a ray from point, or toggle a ball at point
-\\[bb-done] -- end game and get score
-"
+\\[bb-done] -- end game and get score"
   (interactive)
   (kill-all-local-variables)
   (use-local-map blackbox-mode-map)
   (setq truncate-lines t)
   (setq major-mode 'blackbox-mode)
-  (setq mode-name "Blackbox"))
+  (setq mode-name "Blackbox")
+  (run-mode-hooks 'blackbox-mode-hook))
 
 ;;;###autoload
 (defun blackbox (num)