annotate lisp/efs/ange-ftp.el @ 103:30eda07fe280

Added tag r20-1b3 for changeset a145efe76779
author cvs
date Mon, 13 Aug 2007 09:15:51 +0200
parents a145efe76779
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
102
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
1 ;;; ange-ftp.el --- Stub for EFS-enabled XEmacs
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
2
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1997 by Steven L Baur
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
4
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
5 ;; Author: Steven L Baur <steve@altair.xemacs.org>
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
6 ;; Keywords: extensions
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
7
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
9
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
13 ;; any later version.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
14
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
18 ;; General Public License for more details.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
19
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
23 ;; 02111-1307, USA.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
24
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
25 ;;; Synched up with: Not in FSF
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
26
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
27 ;;; Commentary:
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
28
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
29 ;; Compatibility module for users who still attempt to reference the
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
30 ;; obsolete ange-ftp.
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
31
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
32 ;;; Code:
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
33
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
34 (require 'efs-auto)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
35 (warn "ange-ftp is obsolete, using efs-auto")
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
36
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
37 (provide 'ange-ftp)
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
38
a145efe76779 Import from CVS: tag r20-1b3
cvs
parents:
diff changeset
39 ;;; ange-ftp.el ends here