]> git.eshelyaron.com Git - emacs.git/commitdiff
Diane Murray <disumu at x3y2z1.net>
authorGlenn Morris <rgm@gnu.org>
Wed, 28 Nov 2007 08:28:15 +0000 (08:28 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 28 Nov 2007 08:28:15 +0000 (08:28 +0000)
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.

lisp/url/ChangeLog
lisp/url/url-dired.el

index 7402de41aabc4c9cb172482893636d4534e46afd..241746162d577ce62bce48ad6c4bd9f0aa259f20 100644 (file)
@@ -1,3 +1,9 @@
+2007-11-28  Diane Murray  <disumu@x3y2z1.net>
+
+       * url-dired.el: 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.
+
 2007-11-15  Richard Stallman  <rms@gnu.org>
 
        * url.el (url-retrieve-synchronously): Call delete-process.
index 189628468b7882b43ebb49e6d03951c944f10a2d..93c99447555933e2c4e0d891bb472f34b1cec6bf 100644 (file)
@@ -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
 (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)