diff options
| author | Glenn Morris | 2011-04-02 11:56:29 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-04-02 11:56:29 -0700 |
| commit | 8abb7da8f3ff251a8b23f6298c7445ecfe1b857f (patch) | |
| tree | 4cfc25d527520e2fd49d3f20af89ae54b2319a07 | |
| parent | 10c1b75128166da3cf80f5192cd283dc088fc54e (diff) | |
| download | emacs-8abb7da8f3ff251a8b23f6298c7445ecfe1b857f.tar.gz emacs-8abb7da8f3ff251a8b23f6298c7445ecfe1b857f.zip | |
Remove some autoload cookies on defcustoms in find-dired.
* lisp/find-dired.el (find-ls-option, find-ls-subdir-switches)
(find-grep-options): Do not autoload these defcustoms.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/find-dired.el | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 006d0aa601d..95e25aeb6d8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2011-04-02 Glenn Morris <rgm@gnu.org> | 1 | 2011-04-02 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * find-dired.el (find-ls-option, find-ls-subdir-switches) | ||
| 4 | (find-grep-options): Do not autoload these defcustoms. | ||
| 5 | |||
| 3 | * progmodes/grep.el (grep-find-use-xargs): Doc fix. | 6 | * progmodes/grep.el (grep-find-use-xargs): Doc fix. |
| 4 | (grep-compute-defaults): Check for `-exec COMMAND +' support. | 7 | (grep-compute-defaults): Check for `-exec COMMAND +' support. |
| 5 | Set grep-find-use-xargs, grep-find-command, and grep-find-template | 8 | Set grep-find-use-xargs, grep-find-command, and grep-find-template |
diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 144d6633be4..081c44df811 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el | |||
| @@ -35,7 +35,6 @@ | |||
| 35 | 35 | ||
| 36 | ;; find's -ls corresponds to these switches. | 36 | ;; find's -ls corresponds to these switches. |
| 37 | ;; Note -b, at least GNU find quotes spaces etc. in filenames | 37 | ;; Note -b, at least GNU find quotes spaces etc. in filenames |
| 38 | ;;;###autoload | ||
| 39 | (defcustom find-ls-option | 38 | (defcustom find-ls-option |
| 40 | (if (eq system-type 'berkeley-unix) (purecopy '("-ls" . "-gilsb")) | 39 | (if (eq system-type 'berkeley-unix) (purecopy '("-ls" . "-gilsb")) |
| 41 | (purecopy '("-exec ls -ld {} \\;" . "-ld"))) | 40 | (purecopy '("-exec ls -ld {} \\;" . "-ld"))) |
| @@ -47,7 +46,6 @@ LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output." | |||
| 47 | (string :tag "Ls Switches")) | 46 | (string :tag "Ls Switches")) |
| 48 | :group 'find-dired) | 47 | :group 'find-dired) |
| 49 | 48 | ||
| 50 | ;;;###autoload | ||
| 51 | (defcustom find-ls-subdir-switches (purecopy "-al") | 49 | (defcustom find-ls-subdir-switches (purecopy "-al") |
| 52 | "`ls' switches for inserting subdirectories in `*Find*' buffers. | 50 | "`ls' switches for inserting subdirectories in `*Find*' buffers. |
| 53 | This should contain the \"-l\" switch. | 51 | This should contain the \"-l\" switch. |
| @@ -57,7 +55,6 @@ them for `find-ls-option'." | |||
| 57 | :group 'find-dired | 55 | :group 'find-dired |
| 58 | :version "22.1") | 56 | :version "22.1") |
| 59 | 57 | ||
| 60 | ;;;###autoload | ||
| 61 | (defcustom find-grep-options | 58 | (defcustom find-grep-options |
| 62 | (purecopy (if (or (eq system-type 'berkeley-unix) | 59 | (purecopy (if (or (eq system-type 'berkeley-unix) |
| 63 | (string-match "solaris2" system-configuration) | 60 | (string-match "solaris2" system-configuration) |