diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2015-12-13 13:47:40 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2015-12-13 13:47:40 +0100 |
commit | 536f6fc826b4cd024bf3b332e8342b9509f77bfb (patch) | |
tree | 4b48c4e5f29aa473cd585cd384ed73e162d9915d /lisp/ido.el | |
parent | 09663d9b91803882508bd805581b95f8990eb441 (diff) | |
download | emacs-536f6fc826b4cd024bf3b332e8342b9509f77bfb.tar.gz |
* lisp/ido.el (ido-file-name-all-completions-1): Do not raise an error
... in case of Tramp. (Bug#20821)
Diffstat (limited to 'lisp/ido.el')
-rw-r--r-- | lisp/ido.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index a254b4fefcf..1415b27a3a7 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -3559,7 +3559,9 @@ it is put to the start of the list." (let* ((len (1- (length dir))) (non-essential t) (compl - (or (file-name-all-completions "" dir) + (or ;; We do not want to be disturbed by "File does not + ;; exist" errors. + (ignore-errors (file-name-all-completions "" dir)) ;; work around bug in ange-ftp. ;; /ftp:user@host: => nil ;; /ftp:user@host:./ => ok |