grep-find のデフォルト値

setq しても意味ない。

;; これは意味ないぽい
(grep-compute-defaults)
(setq grep-find-command
      "find . -type f '!' -wholename '*/.svn/*' -print0 | xargs -0 -e grep -nH -e ")

custom-set-variables する。

(custom-set-variables
 '(grep-find-command "find . -type f ! -wholename '*/.svn/*' ! -wholename '*/tplc/*' -name '*.php' | xargs lgrep -Os -nH ''")
)