vim: update to 9.1.1034
[oi-userland.git] / components / editor / emacs / patches / 01-find.patch
blob8ed2b6139079b7998ad0d8a923454c3ccbd87a5a
1 Ensure that emacs uses GNU find. See components/emacs/README.
3 --- emacs-29.1/lisp/loaddefs.el.orig 2023-07-23 10:06:41.000000000 +0200
4 +++ emacs-29.1/lisp/loaddefs.el 2023-08-02 19:00:09.757843905 +0200
5 @@ -14692,7 +14692,7 @@
6 (defvar grep-program (purecopy "grep") "\
7 The default grep program for `grep-command' and `grep-find-command'.
8 This variable's value takes effect when `grep-compute-defaults' is called.")
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-29.1/lisp/ldefs-boot.el.orig 2023-07-23 10:17:55.000000000 +0200
15 +++ emacs-29.1/lisp/ldefs-boot.el 2023-08-02 19:12:41.371323952 +0200
16 @@ -14692,7 +14692,7 @@
17 (defvar grep-program (purecopy "grep") "\
18 The default grep program for `grep-command' and `grep-find-command'.
19 This variable's value takes effect when `grep-compute-defaults' is called.")
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-29.1/lisp/progmodes/grep.el.orig 2023-07-08 11:38:40.000000000 +0200
26 +++ emacs-29.1/lisp/progmodes/grep.el 2023-08-02 19:22:04.514472455 +0200
27 @@ -506,7 +506,7 @@
28 This variable's value takes effect when `grep-compute-defaults' is called.")
30 ;;;###autoload
31 -(defvar find-program (purecopy "find")
32 +(defvar find-program (purecopy "/usr/gnu/bin/find")
33 "The default find program.
34 This is used by commands like `grep-find-command', `find-dired'
35 and others.")