Variable: grep-find-command

grep-find-command is a customizable variable defined in grep.el.gz.

Value

nil

Documentation

The default find command for M-x grep-find (grep-find).

In interactive usage, the actual value of this variable is set up by grep-compute-defaults; to change the default value, use M-x customize (customize) or call the function grep-apply-setting.

This variable can either be a string, or a cons of the form (COMMAND . POSITION). In the latter case, COMMAND will be used as the default command, and point will be placed at POSITION for easier editing.

Probably introduced at or before Emacs version 21.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/grep.el.gz
;;;###autoload
(defcustom grep-find-command nil
  "The default find command for \\[grep-find].
In interactive usage, the actual value of this variable is set up
by `grep-compute-defaults'; to change the default value, use
\\[customize] or call the function `grep-apply-setting'.

This variable can either be a string, or a cons of the
form (COMMAND . POSITION).  In the latter case, COMMAND will be
used as the default command, and point will be placed at POSITION
for easier editing."
  :type '(choice string
                 (cons string integer)
		 (const :tag "Not Set" nil))
  :set #'grep-apply-setting)