summaryrefslogtreecommitdiff
path: root/lisp/find-dired.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-04-02 11:56:29 -0700
committerGlenn Morris <rgm@gnu.org>2011-04-02 11:56:29 -0700
commit8abb7da8f3ff251a8b23f6298c7445ecfe1b857f (patch)
tree4cfc25d527520e2fd49d3f20af89ae54b2319a07 /lisp/find-dired.el
parent10c1b75128166da3cf80f5192cd283dc088fc54e (diff)
downloademacs-8abb7da8f3ff251a8b23f6298c7445ecfe1b857f.tar.gz
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.
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r--lisp/find-dired.el3
1 files changed, 0 insertions, 3 deletions
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 @@
;; find's -ls corresponds to these switches.
;; Note -b, at least GNU find quotes spaces etc. in filenames
-;;;###autoload
(defcustom find-ls-option
(if (eq system-type 'berkeley-unix) (purecopy '("-ls" . "-gilsb"))
(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."
(string :tag "Ls Switches"))
:group 'find-dired)
-;;;###autoload
(defcustom find-ls-subdir-switches (purecopy "-al")
"`ls' switches for inserting subdirectories in `*Find*' buffers.
This should contain the \"-l\" switch.
@@ -57,7 +55,6 @@ them for `find-ls-option'."
:group 'find-dired
:version "22.1")
-;;;###autoload
(defcustom find-grep-options
(purecopy (if (or (eq system-type 'berkeley-unix)
(string-match "solaris2" system-configuration)