aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-11-22 13:49:34 +0000
committerJuanma Barranquero2007-11-22 13:49:34 +0000
commit8e845e23f4f0aff065587fee41e7ae335332f602 (patch)
tree0fdc7fa4b429dccaaa176bac46672c205f959b4a
parentf36d1cdc014177178aa112806d163ab2872e7a1b (diff)
downloademacs-8e845e23f4f0aff065587fee41e7ae335332f602.tar.gz
emacs-8e845e23f4f0aff065587fee41e7ae335332f602.zip
(mailcap-parse-mailcaps, mailcap-parse-mimetypes, mailcap-extension-to-mime,
mailcap-mime-info, make-symbolic-link): Declare as functions.
-rw-r--r--lisp/dired-aux.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 1ac6208313a..6bef35963cd 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -463,6 +463,11 @@ with a prefix argument."
463 463
464;;; Shell commands 464;;; Shell commands
465 465
466(declare-function mailcap-parse-mailcaps "gnus/mailcap" (&optional path force))
467(declare-function mailcap-parse-mimetypes "gnus/mailcap" (&optional path force))
468(declare-function mailcap-extension-to-mime "gnus/mailcap" (extn))
469(declare-function mailcap-mime-info "gnus/mailcap" (string &optional request))
470
466(defun dired-read-shell-command-default (files) 471(defun dired-read-shell-command-default (files)
467 "Return a list of default commands for `dired-read-shell-command'." 472 "Return a list of default commands for `dired-read-shell-command'."
468 (require 'mailcap) 473 (require 'mailcap)
@@ -1196,6 +1201,8 @@ Special value `always' suppresses confirmation."
1196 (dired-copy-file-recursive from to ok-flag dired-copy-preserve-time t 1201 (dired-copy-file-recursive from to ok-flag dired-copy-preserve-time t
1197 dired-recursive-copies)) 1202 dired-recursive-copies))
1198 1203
1204(declare-function make-symbolic-link "fileio.c")
1205
1199(defun dired-copy-file-recursive (from to ok-flag &optional 1206(defun dired-copy-file-recursive (from to ok-flag &optional
1200 preserve-time top recursive) 1207 preserve-time top recursive)
1201 (let ((attrs (file-attributes from)) 1208 (let ((attrs (file-attributes from))