diff options
author | Glenn Morris <rgm@gnu.org> | 2010-12-13 20:35:33 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-12-13 20:35:33 -0800 |
commit | aae4b48c36b85f4af4fceaeb9091cf567065649e (patch) | |
tree | 7f83925613d47fa2af2edaa45222f43072a088ba /lisp/dired.el | |
parent | bff7c1adc372497c323aaafc281a26e1e3fc46c2 (diff) | |
download | emacs-aae4b48c36b85f4af4fceaeb9091cf567065649e.tar.gz |
Remove some dired.el autoload cookies on defcustoms.
* lisp/dired.el (dired-trivial-filenames, dired-chown-program)
(dired-auto-revert-buffer): Remove autoload cookies.
* lisp/mail/sendmail.el (mail-recover-1): Require 'dired.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index bf45c508456..cec4ffa2f1c 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -69,7 +69,6 @@ If nil, `dired-listing-switches' is used." :type '(choice (const :tag "Use dired-listing-switches" nil) (string :tag "Switches"))) -;;;###autoload (defcustom dired-chown-program (purecopy (cond ((executable-find "chown") "chown") ((file-executable-p "/usr/sbin/chown") "/usr/sbin/chown") @@ -115,7 +114,6 @@ always set this variable to t." :type 'boolean :group 'dired-mark) -;;;###autoload (defcustom dired-trivial-filenames (purecopy "^\\.\\.?$\\|^#") "Regexp of files to skip when finding first file of a directory. A value of nil means move to the subdir line. @@ -763,7 +761,6 @@ for a remote directory. This feature is used by Auto Revert Mode." buffer-read-only (dired-directory-changed-p dirname)))) -;;;###autoload (defcustom dired-auto-revert-buffer nil "Automatically revert dired buffer on revisiting. If t, revisiting an existing dired buffer automatically reverts it. |