Andreas Wacknitz
2020-08-16 70a91e76c6f19ec75c3596eeb7dcc6afbf4f9ea1
commit | author | age
70a91e 1 Ensure that emacs uses GNU find. See components/emacs/README.
AW 2
3 --- emacs-27.1/lisp/loaddefs.el.orig    2020-08-04 21:50:06.000000000 +0000
4 +++ emacs-27.1/lisp/loaddefs.el    2020-08-15 11:07:57.225527052 +0000
5 @@ -15065,7 +15065,7 @@
6  The default grep program for `grep-command' and `grep-find-command'.
7  This variable's value takes effect when `grep-compute-defaults' is called.")
8  
9 -(defvar find-program (purecopy "find") "\
10 +(defvar find-program (purecopy "/usr/gnu/bin/find") "\
11  The default find program.
12  This is used by commands like `grep-find-command', `find-dired'
13  and others.")
14 --- emacs-27.1/lisp/ldefs-boot.el.orig    2020-08-04 21:59:53.000000000 +0000
15 +++ emacs-27.1/lisp/ldefs-boot.el    2020-08-15 11:08:30.652017347 +0000
16 @@ -15065,7 +15065,7 @@
17  The default grep program for `grep-command' and `grep-find-command'.
18  This variable's value takes effect when `grep-compute-defaults' is called.")
19  
20 -(defvar find-program (purecopy "find") "\
21 +(defvar find-program (purecopy "/usr/gnu/bin/find") "\
22  The default find program.
23  This is used by commands like `grep-find-command', `find-dired'
24  and others.")
25 --- emacs-27.1/lisp/progmodes/grep.el.orig    2020-07-29 23:40:41.000000000 +0000
26 +++ emacs-27.1/lisp/progmodes/grep.el    2020-08-15 11:09:19.101533184 +0000
27 @@ -501,7 +501,7 @@
9bb041 28  This variable's value takes effect when `grep-compute-defaults' is called.")
SA 29  
30  ;;;###autoload
31 -(defvar find-program (purecopy "find")
70a91e 32 +(defvar find-program (purecopy "/usr/gnu/bin/find")
9bb041 33    "The default find program.
SA 34  This is used by commands like `grep-find-command', `find-dired'
35  and others.")