From: Richard M. Stallman Date: Tue, 9 Jun 1998 01:57:51 +0000 (+0000) Subject: (ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of X-Git-Tag: emacs-20.3~678 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f5af0d61543ac24a29c05bf4350fb90f02277edb;p=emacs.git (ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of literal "/" when calling real completion function. --- diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el index 1deb9afdcfa..927bb86c3f3 100644 --- a/lisp/ange-ftp.el +++ b/lisp/ange-ftp.el @@ -3821,7 +3821,8 @@ system TYPE.") file (nconc (ange-ftp-generate-root-prefixes) (mapcar 'list - (ange-ftp-real-file-name-all-completions file "/")))) + (ange-ftp-real-file-name-all-completions + file ange-ftp-this-dir)))) (ange-ftp-real-file-name-completion file ange-ftp-this-dir)))))