* lisp/play/landmark.el (landmark-mode): Fix typos.
authorGlenn Morris <rgm@gnu.org>
Wed, 11 Sep 2013 18:32:32 +0000 (14:32 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 11 Sep 2013 18:32:32 +0000 (14:32 -0400)
lisp/ChangeLog
lisp/play/landmark.el

index cf1fa06..315e0d4 100644 (file)
@@ -1,5 +1,7 @@
 2013-09-11  Glenn Morris  <rgm@gnu.org>
 
+       * play/landmark.el (landmark-mode): Fix typos.
+
        * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
        Check cvs-sort-ignore-file is bound.
 
index b995da4..3dc5dd2 100644 (file)
 (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))