# HG changeset patch # User Glenn Morris # Date 1196238427 0 # Node ID 08a9d49975b301de021e6da53b439b44a7ed20b1 # Parent 3848a881bd3c80932b88a310e4d66fc53c7aabf2 Diane Murray Don't require w3-fetch and w3-open-local. (url-dired-find-file): Use `find-file'. Doc fix. (url-dired-find-file-mouse, url-dired-minor-mode): Doc fix. diff -r 3848a881bd3c -r 08a9d49975b3 lisp/url/url-dired.el --- a/lisp/url/url-dired.el Wed Nov 28 08:23:51 2007 +0000 +++ b/lisp/url/url-dired.el Wed Nov 28 08:27:07 2007 +0000 @@ -24,8 +24,6 @@ ;;; Code: -(autoload 'w3-fetch "w3") -(autoload 'w3-open-local "w3") (autoload 'dired-get-filename "dired") (defvar url-dired-minor-mode-map @@ -41,22 +39,19 @@ (make-variable-buffer-local 'url-dired-minor-mode) (defun url-dired-find-file () - "In dired, visit the file or directory named on this line, using Emacs-W3." + "In dired, visit the file or directory named on this line." (interactive) (let ((filename (dired-get-filename))) - (cond ((string-match "/\\(.*@.*\\):\\(/.*\\)" filename) - (w3-fetch (concat "file://" (match-string 1 filename) (match-string 2 filename)))) - (t - (w3-open-local filename))))) + (find-file filename))) (defun url-dired-find-file-mouse (event) - "In dired, visit the file or directory name you click on, using Emacs-W3." + "In dired, visit the file or directory name you click on." (interactive "@e") (mouse-set-point event) (url-dired-find-file)) (defun url-dired-minor-mode (&optional arg) - "Minor mode for directory browsing with Emacs-W3." + "Minor mode for directory browsing." (interactive "P") (cond ((null arg)