diff options
| author | Stefan Monnier | 2008-05-30 01:36:29 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-05-30 01:36:29 +0000 |
| commit | a118b59bed88dee370dba64bfc09245fb78dbf8b (patch) | |
| tree | 78f2367866069eb77f5849da3661e9b1eadba35c | |
| parent | eaf11618479c899a602cfe12a3e18a5db48d8959 (diff) | |
| download | emacs-a118b59bed88dee370dba64bfc09245fb78dbf8b.tar.gz emacs-a118b59bed88dee370dba64bfc09245fb78dbf8b.zip | |
(url-file-name-completion): Add missing argument.
| -rw-r--r-- | lisp/url/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/url/url-handlers.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 3ae9c60cff7..b303d9757e4 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * url-handlers.el (url-file-name-completion): Add missing argument. | ||
| 4 | |||
| 1 | 2008-05-12 Teodor Zlatanov <tzz@lifelogs.com> | 5 | 2008-05-12 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 6 | ||
| 3 | * url-auth.el: Add autoload cookie for | 7 | * url-auth.el: Add autoload cookie for |
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index 3fe441b5c84..133f40a3636 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el | |||
| @@ -288,7 +288,7 @@ They count bytes from the beginning of the body." | |||
| 288 | (decode-coding-inserted-region start (point) url visit beg end replace)) | 288 | (decode-coding-inserted-region start (point) url visit beg end replace)) |
| 289 | (list url (car size-and-charset)))))) | 289 | (list url (car size-and-charset)))))) |
| 290 | 290 | ||
| 291 | (defun url-file-name-completion (url directory) | 291 | (defun url-file-name-completion (url directory &optional predicate) |
| 292 | (error "Unimplemented")) | 292 | (error "Unimplemented")) |
| 293 | 293 | ||
| 294 | (defun url-file-name-all-completions (file directory) | 294 | (defun url-file-name-all-completions (file directory) |