Remove some autoload cookies on defcustoms in find-dired.
authorGlenn Morris <rgm@gnu.org>
Sat, 2 Apr 2011 18:56:29 +0000 (11:56 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 2 Apr 2011 18:56:29 +0000 (11:56 -0700)
* lisp/find-dired.el (find-ls-option, find-ls-subdir-switches)
(find-grep-options): Do not autoload these defcustoms.

lisp/ChangeLog
lisp/find-dired.el

index 006d0aa..95e25ae 100644 (file)
@@ -1,5 +1,8 @@
 2011-04-02  Glenn Morris  <rgm@gnu.org>
 
+       * find-dired.el (find-ls-option, find-ls-subdir-switches)
+       (find-grep-options): Do not autoload these defcustoms.
+
        * progmodes/grep.el (grep-find-use-xargs): Doc fix.
        (grep-compute-defaults): Check for `-exec COMMAND +' support.
        Set grep-find-use-xargs, grep-find-command, and grep-find-template
index 144d663..081c44d 100644 (file)
@@ -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)