2134N/A# Ensure that emacs uses GNU find. See components/emacs/README.
4789N/A# 16171813 emacs rgrep assumes gnu find in path; fails using
4789N/A# GNU-specific options
2134N/A#
4789N/A--- emacs-24.5.orig/lisp/progmodes/grep.el 2015-04-02 01:23:06.000000000 -0600
4789N/A+++ emacs-24.5/lisp/progmodes/grep.el 2015-06-26 15:15:32.310280505 -0600
4789N/A@@ -422,7 +422,8 @@
2134N/A This variable's value takes effect when `grep-compute-defaults' is called.")
2134N/A
2134N/A ;;;###autoload
2134N/A-(defvar find-program (purecopy "find")
2134N/A+;;Change from find to GNU find for Solaris, as emacs uses GNU-specific options
2134N/A+(defvar find-program (purecopy "/usr/gnu/bin/find")
4789N/A "The default find program.
4789N/A This is used by commands like `grep-find-command', `find-dired'
4789N/A and others.")