Variable: gomoku-mode-abbrev-table

gomoku-mode-abbrev-table is a variable defined in gomoku.el.gz.

Value

#<obarray n=1>

Documentation

Abbrev table for gomoku-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/play/gomoku.el.gz
;; This one is for when they set view-read-only to t: Gomoku cannot
;; allow View Mode to be activated in its buffer.
(define-derived-mode gomoku-mode special-mode "Gomoku"
  "Major mode for playing Gomoku 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.
\\<gomoku-mode-map>
You play by moving the cursor over the square you choose and hitting \\[gomoku-human-plays].

Other useful commands:\n
\\{gomoku-mode-map}"
  (gomoku-display-statistics)
  (setq-local font-lock-defaults '(gomoku-font-lock-keywords t))
  (setq buffer-read-only t)
  (add-hook 'post-command-hook #'gomoku--intangible nil t))