1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

Remove grep-use-compilation-buffer defcustom.

This commit is contained in:
Kim F. Storm 2003-11-23 22:51:14 +00:00
parent 63dc7c6bf8
commit 5f032b5036
2 changed files with 8 additions and 9 deletions

View File

@ -39,7 +39,6 @@
(grep-tree-ignore-CVS-directories): Move to grep custom group.
(grep-setup-hook): New hook variable.
(grep-mode-map): New keymap for grep commands. Add Grep menu.
(grep-use-compilation-buffer): New defcustom.
(grep-last-buffer): New defvar, override compilation-last-buffer.
(grep): Add optional arg HIGHLIGHT-REGEXP. Doc fix.
Call compile-internal with args highlight-regexp and grep-mode-map.

View File

@ -195,14 +195,14 @@ The following place holders should be present in the string:
;;;; TODO --- refine this!!
(defcustom grep-use-compilation-buffer t
"When non-nil, grep specific commands update `compilation-last-buffer'.
This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
can be used to navigate between grep matches (the default).
Otherwise, the grep specific commands like \\[grep-next-match] must
be used to navigate between grep matches."
:type 'boolean
:group 'grep)
;;; (defcustom grep-use-compilation-buffer t
;;; "When non-nil, grep specific commands update `compilation-last-buffer'.
;;; This means that standard compile commands like \\[next-error] and \\[compile-goto-error]
;;; can be used to navigate between grep matches (the default).
;;; Otherwise, the grep specific commands like \\[grep-next-match] must
;;; be used to navigate between grep matches."
;;; :type 'boolean
;;; :group 'grep)
;; override compilation-last-buffer
(defvar grep-last-buffer nil