aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/tramp.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8ebd18a19cf..28847f723be 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-07-03 Andreas Schwab <schwab@suse.de>
2
3 * net/tramp.el (tramp-handle-ange-ftp): Move interactive spec
4 after doc string.
5
12002-07-03 Juanma Barranquero <lektu@terra.es> 62002-07-03 Juanma Barranquero <lektu@terra.es>
2 7
3 * net/tramp.el (tramp-send-eof): Fix typo. 8 * net/tramp.el (tramp-send-eof): Fix typo.
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el
index e2f485be518..8917c62ac02 100644
--- a/lisp/net/tramp.el
+++ b/lisp/net/tramp.el
@@ -2973,11 +2973,11 @@ Falls back to normal file name handler if no tramp file name handler exists."
2973 2973
2974;;;###autoload 2974;;;###autoload
2975(defun tramp-handle-ange-ftp () 2975(defun tramp-handle-ange-ftp ()
2976 (interactive)
2977 "Turn Ange-FTP off and an Ange-FTP-like filename format. 2976 "Turn Ange-FTP off and an Ange-FTP-like filename format.
2978Requests suitable for Ange-FTP will be forwarded to Ange-FTP. 2977Requests suitable for Ange-FTP will be forwarded to Ange-FTP.
2979Also see the variables `tramp-ftp-method', `tramp-default-method', 2978Also see the variables `tramp-ftp-method', `tramp-default-method',
2980and `tramp-default-method-alist'." 2979and `tramp-default-method-alist'."
2980 (interactive)
2981 (let ((a1 (rassq 'ange-ftp-hook-function file-name-handler-alist)) 2981 (let ((a1 (rassq 'ange-ftp-hook-function file-name-handler-alist))
2982 (a2 (rassq 'ange-ftp-completion-hook-function file-name-handler-alist)) 2982 (a2 (rassq 'ange-ftp-completion-hook-function file-name-handler-alist))
2983 (a3 (rassq 'tramp-file-name-handler file-name-handler-alist))) 2983 (a3 (rassq 'tramp-file-name-handler file-name-handler-alist)))