* lisp/url/url-handlers.el (url-file-name-completion)

(url-file-name-all-completions): Don't signal errors.

Fixes: debbugs:14806
This commit is contained in:
Stefan Monnier 2013-07-31 00:19:09 -04:00
parent d5065ccab3
commit 42d439528d
2 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2013-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
* url-handlers.el (url-file-name-completion)
(url-file-name-all-completions): Don't signal errors (bug#14806).
2013-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
* url-http.el (status): Remove, unused.

View file

@ -311,11 +311,17 @@ They count bytes from the beginning of the body."
(put 'insert-file-contents 'url-file-handlers 'url-insert-file-contents)
(defun url-file-name-completion (url directory &optional predicate)
(error "Unimplemented"))
;; Even if it's not implemented, it's not an error to ask for completion,
;; in case it's available (bug#14806).
;; (error "Unimplemented")
url)
(put 'file-name-completion 'url-file-handlers 'url-file-name-completion)
(defun url-file-name-all-completions (file directory)
(error "Unimplemented"))
;; Even if it's not implemented, it's not an error to ask for completion,
;; in case it's available (bug#14806).
;; (error "Unimplemented")
nil)
(put 'file-name-all-completions
'url-file-handlers 'url-file-name-all-completions)