emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103808: Remove some autoload cookies


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103808: Remove some autoload cookies on defcustoms in find-dired.
Date: Sat, 02 Apr 2011 11:56:29 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103808
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2011-04-02 11:56:29 -0700
message:
  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.
modified:
  lisp/ChangeLog
  lisp/find-dired.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-04-02 18:52:08 +0000
+++ b/lisp/ChangeLog    2011-04-02 18:56:29 +0000
@@ -1,5 +1,8 @@
 2011-04-02  Glenn Morris  <address@hidden>
 
+       * 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

=== modified file 'lisp/find-dired.el'
--- a/lisp/find-dired.el        2011-01-25 04:08:28 +0000
+++ b/lisp/find-dired.el        2011-04-02 18:56:29 +0000
@@ -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 @@
               (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 @@
   :group 'find-dired
   :version "22.1")
 
-;;;###autoload
 (defcustom find-grep-options
   (purecopy (if (or (eq system-type 'berkeley-unix)
          (string-match "solaris2" system-configuration)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]