comparison lisp/net/tramp-uu.el @ 81758:f03856eb136b

* files.el (file-remote-p): Introduce optional parameter CONNECTED. * net/tramp.el: * net/tramp-ftp.el: * net/tramp-smb.el: * net/tramp-uu.el: * net/trampver.el: Migrate to Tramp 2.1. * net/tramp-cache.el: * net/tramp-fish.el: * net/tramp-gw.el: New Tramp packages. * net/tramp-util.el: * net/tramp-vc.el: Removed. * net/ange-ftp.el: Add ange-ftp property to 'start-file-process (ange-ftp-file-remote-p): Handle optional parameter CONNECTED. * net/rcompile.el (remote-compile): Handle Tramp 2.1 arguments. * progmodes/compile.el (compilation-start): Redefine `start-process' temporarily when `default-directory' is remote. Remove case of synchronous compilation, this won't happen ever. (compilation-setup): Make local variable `comint-file-name-prefix' for remote compilation.
author Michael Albinus <michael.albinus@gmx.de>
date Sun, 08 Jul 2007 18:03:20 +0000
parents 0cc9b64806d2
children b98604865ea0 a66921565bcb
comparison
equal deleted inserted replaced
81757:d4e68ecdb000 81758:f03856eb136b
7 ;; Author: Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net> 7 ;; Author: Kai Gro,A_(Bjohann <kai.grossjohann@gmx.net>
8 ;; Keywords: comm, terminals 8 ;; Keywords: comm, terminals
9 9
10 ;; This file is free software; you can redistribute it and/or modify 10 ;; This file is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by 11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option) 12 ;; the Free Software Foundation; either version 3 of the License, or
13 ;; any later version. 13 ;; (at your option) any later version.
14 14
15 ;; This file is distributed in the hope that it will be useful, 15 ;; This file is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details. 18 ;; GNU General Public License for more details.
19 19
20 ;; You should have received a copy of the GNU General Public License 20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to 21 ;; along with GNU Emacs; see the file COPYING. If not, see
22 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 ;; <http://www.gnu.org/licenses/>.
23 ;; Boston, MA 02110-1301, USA.
24 23
25 ;;; Commentary: 24 ;;; Commentary:
26 25
27 ;; An implementation of "uuencode" in Lisp. Uses the function 26 ;; An implementation of "uuencode" in Lisp. Uses the function
28 ;; base64-encode-region which is built-in to modern Emacsen. 27 ;; base64-encode-region which is built-in to modern Emacsen.