1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-10 23:31:19 -07:00

* lisp/play/landmark.el (landmark-mode): Fix typos.

This commit is contained in:
Glenn Morris 2013-09-11 14:32:32 -04:00
parent d3506ca5a0
commit 512e4cdc0d
2 changed files with 4 additions and 2 deletions

View 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.

View file

@ -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))