aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2013-09-11 14:32:32 -0400
committerGlenn Morris2013-09-11 14:32:32 -0400
commit512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2 (patch)
tree303e7620a7e816fdb35217e00836eb7359c89ff3
parentd3506ca5a0a4deca042d9cf91e5cbba083675220 (diff)
downloademacs-512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2.tar.gz
emacs-512e4cdc0d3e5d00ac1d5ae5b4be74d090d034c2.zip
* lisp/play/landmark.el (landmark-mode): Fix typos.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/play/landmark.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cf1fa06aee8..315e0d42e74 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12013-09-11 Glenn Morris <rgm@gnu.org> 12013-09-11 Glenn Morris <rgm@gnu.org>
2 2
3 * play/landmark.el (landmark-mode): Fix typos.
4
3 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec. 5 * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
4 Check cvs-sort-ignore-file is bound. 6 Check cvs-sort-ignore-file is bound.
5 7
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 @@
233(put 'landmark-mode 'intangible 1) 233(put 'landmark-mode 'intangible 1)
234;; This one is for when they set view-read-only to t: Landmark cannot 234;; This one is for when they set view-read-only to t: Landmark cannot
235;; allow View Mode to be activated in its buffer. 235;; allow View Mode to be activated in its buffer.
236(define-derived-mode lm-mode special-mode "Lm" 236(define-derived-mode landmark-mode special-mode "Lm"
237 "Major mode for playing Lm against Emacs. 237 "Major mode for playing Lm against Emacs.
238You and Emacs play in turn by marking a free square. You mark it with X 238You and Emacs play in turn by marking a free square. You mark it with X
239and Emacs marks it with O. The winner is the first to get five contiguous 239and Emacs marks it with O. The winner is the first to get five contiguous
@@ -245,7 +245,7 @@ Other useful commands:
245\\{landmark-mode-map} 245\\{landmark-mode-map}
246Entry to this mode calls the value of `landmark-mode-hook' if that value 246Entry to this mode calls the value of `landmark-mode-hook' if that value
247is non-nil. One interesting value is `turn-on-font-lock'." 247is non-nil. One interesting value is `turn-on-font-lock'."
248 (lm-display-statistics) 248 (landmark-display-statistics)
249 (setq-local font-lock-defaults '(lm-font-lock-keywords t)) 249 (setq-local font-lock-defaults '(lm-font-lock-keywords t))
250 (setq buffer-read-only t)) 250 (setq buffer-read-only t))
251 251