diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/play/landmark.el | 4 | 
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 @@  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. 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)) | 
