summaryrefslogtreecommitdiff
path: root/lisp/url/url-file.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2004-04-12 04:03:32 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2004-04-12 04:03:32 +0000
commit88c963ed405e11de34f45b96e177bd728187cf59 (patch)
treef222d6b31709edac0dc90f05842388b794413167 /lisp/url/url-file.el
parent0aa70d32499588297dfd8ee42963f8fd2b795cad (diff)
downloademacs-88c963ed405e11de34f45b96e177bd728187cf59.tar.gz
(url-file-build-filename): Don't use directory-sep-char.
Diffstat (limited to 'lisp/url/url-file.el')
-rw-r--r--lisp/url/url-file.el57
1 files changed, 32 insertions, 25 deletions
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el
index 9cacf9bd468..4dfac46b651 100644
--- a/lisp/url/url-file.el
+++ b/lisp/url/url-file.el
@@ -1,27 +1,30 @@
;;; url-file.el --- File retrieval code
+
+;; Copyright (c) 1996 - 1999,2004 Free Software Foundation, Inc.
+;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
+
;; Keywords: comm, data, processes
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;; Copyright (c) 1993 - 1996 by William M. Perry <wmperry@cs.indiana.edu>
-;;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
-;;;
-;;; This file is part of GNU Emacs.
-;;;
-;;; GNU Emacs is free software; you can redistribute it and/or modify
-;;; it under the terms of the GNU General Public License as published by
-;;; the Free Software Foundation; either version 2, or (at your option)
-;;; any later version.
-;;;
-;;; GNU Emacs is distributed in the hope that it will be useful,
-;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;;; GNU General Public License for more details.
-;;;
-;;; You should have received a copy of the GNU General Public License
-;;; along with GNU Emacs; see the file COPYING. If not, write to the
-;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;;; Boston, MA 02111-1307, USA.
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; This file is part of GNU Emacs.
+;;
+;; GNU Emacs is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+;;
+;; GNU Emacs is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+;;
+;; You should have received a copy of the GNU General Public License
+;; along with GNU Emacs; see the file COPYING. If not, write to the
+;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Commentary:
+
+;;; Code:
(eval-when-compile (require 'cl))
(require 'mailcap)
@@ -123,10 +126,13 @@ to them."
;; directory-sep-char as its separator? Would it be safer to just
;; use '/' unconditionally and rely on the FTP server to
;; straighten it out for us?
+ ;; (if (and (file-directory-p filename)
+ ;; (not (string-match (format "%c$" directory-sep-char) filename)))
+ ;; (url-set-filename url (format "%s%c" filename directory-sep-char)))
(if (and (file-directory-p filename)
- (not (string-match (format "%c$" directory-sep-char) filename)))
- (url-set-filename url
- (format "%s%c" filename directory-sep-char)))
+ (not (string-match "/\\'" filename)))
+ (url-set-filename url (format "%s/" filename)))
+
;; If it is a directory, look for an index file first.
(if (and (file-directory-p filename)
@@ -235,4 +241,5 @@ to them."
(provide 'url-file)
-;;; arch-tag: 010e914a-7313-494b-8a8c-6495a862157d
+;; arch-tag: 010e914a-7313-494b-8a8c-6495a862157d
+;;; url-file.el ends here