Variable: occur-mode-abbrev-table

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

Value

#<obarray n=1>

Documentation

Abbrev table for occur-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/replace.el.gz
(define-derived-mode occur-mode special-mode "Occur"
  "Major mode for output from \\[occur].
\\<occur-mode-map>Move point to one of the items in this buffer, then use
\\[occur-mode-goto-occurrence] to go to the occurrence that the item refers to.
Alternatively, click \\[occur-mode-mouse-goto] on an item to go to it.

\\{occur-mode-map}"
  (setq-local revert-buffer-function #'occur-revert-function)
  (add-hook 'kill-buffer-hook #'occur--garbage-collect-revert-args nil t)
  (setq next-error-function #'occur-next-error))