Variable: grep-mode-abbrev-table
grep-mode-abbrev-table is a variable defined in grep.el.gz.
Value
[## 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
Documentation
Abbrev table for grep-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
;;;###autoload
(define-compilation-mode grep-mode "Grep"
"Sets `grep-last-buffer' and `compilation-window-height'."
(setq grep-last-buffer (current-buffer))
(setq-local tool-bar-map grep-mode-tool-bar-map)
(setq-local compilation-error-face
grep-hit-face)
(setq-local compilation-error-regexp-alist
grep-regexp-alist)
(setq-local compilation-mode-line-errors
grep-mode-line-matches)
;; compilation-directory-matcher can't be nil, so we set it to a regexp that
;; can never match.
(setq-local compilation-directory-matcher
(list regexp-unmatchable))
(setq-local compilation-process-setup-function
#'grep-process-setup)
(setq-local compilation-disable-input t)
(setq-local compilation-error-screen-columns
grep-error-screen-columns)
(add-hook 'compilation-filter-hook #'grep-filter nil t))