aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-06-09 01:04:28 +0000
committerLuc Teirlinck2004-06-09 01:04:28 +0000
commit05dcf18afa696f9b4e248f0caf285e401dd12910 (patch)
tree0edccc1c40c9149085fa5b0a849db73222f0f76f
parent0a07c3a941dbfd9a399161969e72e6f0ad7c0169 (diff)
downloademacs-05dcf18afa696f9b4e248f0caf285e401dd12910.tar.gz
emacs-05dcf18afa696f9b4e248f0caf285e401dd12910.zip
(dired-do-touch, dired-clean-directory, dired-run-shell-command)
(dired-query): Add autoloads.
-rw-r--r--lisp/dired-aux.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 3d662560faf..7e96f1673ed 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -255,6 +255,7 @@ This calls chmod, thus symbolic modes like `g+w' are allowed."
255 (error "chown not supported on this system")) 255 (error "chown not supported on this system"))
256 (dired-do-chxxx "Owner" dired-chown-program 'chown arg)) 256 (dired-do-chxxx "Owner" dired-chown-program 'chown arg))
257 257
258;;;###autoload
258(defun dired-do-touch (&optional arg) 259(defun dired-do-touch (&optional arg)
259 "Change the timestamp of the marked (or next ARG) files. 260 "Change the timestamp of the marked (or next ARG) files.
260This calls touch." 261This calls touch."
@@ -342,6 +343,7 @@ Uses the shell command coming from variables `lpr-command' and
342 343
343(defvar dired-file-version-alist) 344(defvar dired-file-version-alist)
344 345
346;;;###autoload
345(defun dired-clean-directory (keep) 347(defun dired-clean-directory (keep)
346 "Flag numerical backups for deletion. 348 "Flag numerical backups for deletion.
347Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. 349Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest.
@@ -551,6 +553,7 @@ the list of file names explicitly with the FILE-LIST argument."
551 (funcall stuff-it files))))) 553 (funcall stuff-it files)))))
552 554
553;; This is an extra function so that it can be redefined by ange-ftp. 555;; This is an extra function so that it can be redefined by ange-ftp.
556;;;###autoload
554(defun dired-run-shell-command (command) 557(defun dired-run-shell-command (command)
555 (let ((handler 558 (let ((handler
556 (find-file-name-handler (directory-file-name default-directory) 559 (find-file-name-handler (directory-file-name default-directory)
@@ -805,6 +808,7 @@ Otherwise, the rule is a compression rule, and compression is done with gzip.")
805 ;; None of these keys quit - use C-g for that. 808 ;; None of these keys quit - use C-g for that.
806 )) 809 ))
807 810
811;;;###autoload
808(defun dired-query (qs-var qs-prompt &rest qs-args) 812(defun dired-query (qs-var qs-prompt &rest qs-args)
809 ;; Query user and return nil or t. 813 ;; Query user and return nil or t.
810 ;; Store answer in symbol VAR (which must initially be bound to nil). 814 ;; Store answer in symbol VAR (which must initially be bound to nil).