Variable: moccur-mode-abbrev-table

moccur-mode-abbrev-table is a variable defined in hmoccur.el.

Value

#<obarray n=1>

Documentation

Abbrev table for moccur-mode.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmoccur.el
(define-derived-mode moccur-mode special-mode "Moccur"
  "Major mode for output from \\[moccur].
\\<moccur-mode-map>Move point to one of the items in this buffer, then use
\\[moccur-to] to go to the occurrence on the current line.
\\[moccur-mode-display-occurrence] displays but does not select the occurrence.

\\{moccur-mode-map}"
  (kill-all-local-variables)
  (use-local-map moccur-mode-map)
  (setq major-mode 'moccur-mode)
  (setq mode-name "Moccur"))