diff options
| -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." | |||
| 3559 | (let* ((len (1- (length dir))) | 3559 | (let* ((len (1- (length dir))) |
| 3560 | (non-essential t) | 3560 | (non-essential t) |
| 3561 | (compl | 3561 | (compl |
| 3562 | (or (file-name-all-completions "" dir) | 3562 | (or ;; We do not want to be disturbed by "File does not |
| 3563 | ;; exist" errors. | ||
| 3564 | (ignore-errors (file-name-all-completions "" dir)) | ||
| 3563 | ;; work around bug in ange-ftp. | 3565 | ;; work around bug in ange-ftp. |
| 3564 | ;; /ftp:user@host: => nil | 3566 | ;; /ftp:user@host: => nil |
| 3565 | ;; /ftp:user@host:./ => ok | 3567 | ;; /ftp:user@host:./ => ok |