diff options
author | Glenn Morris <rgm@gnu.org> | 2013-09-11 14:32:32 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-09-11 14:32:32 -0400 |
commit | 512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2 (patch) | |
tree | 303e7620a7e816fdb35217e00836eb7359c89ff3 /lisp/play | |
parent | d3506ca5a0a4deca042d9cf91e5cbba083675220 (diff) | |
download | emacs-512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2.tar.gz |
* lisp/play/landmark.el (landmark-mode): Fix typos.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/landmark.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/play/landmark.el b/lisp/play/landmark.el index b995da4513c..3dc5dd2173c 100644 --- a/lisp/play/landmark.el +++ b/lisp/play/landmark.el @@ -233,7 +233,7 @@ (put 'landmark-mode 'intangible 1) ;; This one is for when they set view-read-only to t: Landmark cannot ;; allow View Mode to be activated in its buffer. -(define-derived-mode lm-mode special-mode "Lm" +(define-derived-mode landmark-mode special-mode "Lm" "Major mode for playing Lm against Emacs. You and Emacs play in turn by marking a free square. You mark it with X and Emacs marks it with O. The winner is the first to get five contiguous @@ -245,7 +245,7 @@ Other useful commands: \\{landmark-mode-map} Entry to this mode calls the value of `landmark-mode-hook' if that value is non-nil. One interesting value is `turn-on-font-lock'." - (lm-display-statistics) + (landmark-display-statistics) (setq-local font-lock-defaults '(lm-font-lock-keywords t)) (setq buffer-read-only t)) |