Update FSF's address.
[bpt/emacs.git] / lisp / url / url-ftp.el
CommitLineData
8c8b8430 1;;; url-ftp.el --- FTP wrapper
00eef4de
LH
2
3;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
4
8c8b8430
SM
5;; Keywords: comm, data, processes
6
00eef4de
LH
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 2, or (at your option)
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to the
4fc5845f
LK
21;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22;; Boston, MA 02110-1301, USA.
00eef4de
LH
23
24;;; Commentary:
8c8b8430
SM
25
26;; We knew not what we did when we overloaded 'file' to mean 'file'
27;; and 'ftp' back in the dark ages of the web.
28;;
29;; This stub file is just here to please the auto-scheme-loading code
30;; in url-methods.el and just maps everything onto the code in
31;; url-file.
32
00eef4de
LH
33;;; Code:
34
8c8b8430
SM
35(require 'url-parse)
36(require 'url-file)
37
38(defconst url-ftp-default-port 21 "Default FTP port.")
39(defconst url-ftp-asynchronous-p t "FTP transfers are asynchronous.")
40(defalias 'url-ftp-expand-file-name 'url-default-expander)
41(defalias 'url-ftp 'url-file)
42
43(provide 'url-ftp)
e5566bd5
MB
44
45;;; arch-tag: 9c3e70c4-350f-4d4a-bb51-a1e9b459e7dc
00eef4de 46;;; url-ftp.el ends here