Variable: landmark-mode-abbrev-table
landmark-mode-abbrev-table is a variable defined in landmark.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for landmark-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/landmark.el.gz
;; 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 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
marks horizontally, vertically or in diagonal.
You play by moving the cursor over the square you choose and hitting \\[landmark-human-plays].
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'."
(landmark-display-statistics)
(setq-local font-lock-defaults '(landmark-font-lock-keywords t))
(setq buffer-read-only t)
(add-hook 'post-command-hook #'landmark--intangible nil t))