]> code.delx.au - gnu-emacs/blob - lisp/url/url-ftp.el
Load cl at compile time.
[gnu-emacs] / lisp / url / url-ftp.el
1 ;;; url-ftp.el --- FTP wrapper
2 ;; Keywords: comm, data, processes
3
4 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5 ;;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
6 ;;;
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
21 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;;; Boston, MA 02111-1307, USA.
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
24
25 ;; We knew not what we did when we overloaded 'file' to mean 'file'
26 ;; and 'ftp' back in the dark ages of the web.
27 ;;
28 ;; This stub file is just here to please the auto-scheme-loading code
29 ;; in url-methods.el and just maps everything onto the code in
30 ;; url-file.
31
32 (require 'url-parse)
33 (require 'url-file)
34
35 (defconst url-ftp-default-port 21 "Default FTP port.")
36 (defconst url-ftp-asynchronous-p t "FTP transfers are asynchronous.")
37 (defalias 'url-ftp-expand-file-name 'url-default-expander)
38 (defalias 'url-ftp 'url-file)
39
40 (provide 'url-ftp)
41
42 ;;; arch-tag: 9c3e70c4-350f-4d4a-bb51-a1e9b459e7dc