summaryrefslogtreecommitdiff
path: root/lisp/play
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1991-04-10 15:06:00 +0000
committerJim Blandy <jimb@redhat.com>1991-04-10 15:06:00 +0000
commit27bad853852286757a0a119aa0221e80f9616b0c (patch)
tree39e8ff412d002f6ba4da9a6021e40c58fd0e2646 /lisp/play
parent77b260b6431cca502fee30fc66afff38b1bd4178 (diff)
downloademacs-27bad853852286757a0a119aa0221e80f9616b0c.tar.gz
*** empty log message ***
Diffstat (limited to 'lisp/play')
-rw-r--r--lisp/play/mpuz.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el
index ff33fbe1640..f4d622ad819 100644
--- a/lisp/play/mpuz.el
+++ b/lisp/play/mpuz.el
@@ -31,7 +31,7 @@
"*Set this to T if you don't want dings on inputs.")
(defun mpuz-ding ()
- "Dings, unless global variable MPUZ-SILENT forbids it."
+ "Dings, unless global variable `mpuz-silent' forbids it."
(or mpuz-silent (ding t)))
@@ -77,15 +77,15 @@
(defun mpuz-mode ()
"Multiplication puzzle with GNU Emacs.
-You have to guess which letters stand for which digits
-in the mulplication displayed inside the *Mult Puzzle* buffer.
+You have to guess which letters stand for which digits in the
+multiplication displayed inside the *Mult Puzzle* buffer.
You may enter a proposal (e.g. A=3) by hitting first the letter A,
then the digit 3, on your keyboard.
-At any time, you may leave the game to do other editing work :-)
+At any time you may leave the game to do other editing work. :-)
Then you may resume the game with M-x mult-puzzle.
-You may abort a game by hitting Control G."
+You may abort a game by hitting \\[keyboard-quit]."
(interactive)
(setq major-mode 'mpuz-mode
mode-name "Mult Puzzle")
@@ -96,10 +96,10 @@ You may abort a game by hitting Control G."
;; Some variables for statistics
;;------------------------------
(defvar mpuz-nb-errors 0
- "Number of errors already made in current game.")
+ "Number of errors made in current game.")
(defvar mpuz-nb-completed-games 0
- "Number of games already completed.")
+ "Number of games completed.")
(defvar mpuz-nb-cumulated-errors 0
"Number of errors made in previous games.")