diff options
| author | Juri Linkov | 2009-03-28 21:18:02 +0000 |
|---|---|---|
| committer | Juri Linkov | 2009-03-28 21:18:02 +0000 |
| commit | 7f3130fc99a40bf5aa605975a136e16469da38ec (patch) | |
| tree | 83d3e9e09cdfaf68aaaa3453c49fb50e2af225cf | |
| parent | e390f3a3fcf19db0056619837a4ecd30483e262a (diff) | |
| download | emacs-7f3130fc99a40bf5aa605975a136e16469da38ec.tar.gz emacs-7f3130fc99a40bf5aa605975a136e16469da38ec.zip | |
(minibuffer-default-add-completions):
Remove `(interactive)'. (Bug#2805)
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d5581dc6464..ebc62924b5e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-03-28 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * simple.el (minibuffer-default-add-completions): | ||
| 4 | Remove `(interactive)'. (Bug#2805) | ||
| 5 | |||
| 1 | 2009-03-28 Eli Zaretskii <eliz@gnu.org> | 6 | 2009-03-28 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * files.el (shell-quote-wildcard-pattern): Doc fix. | 8 | * files.el (shell-quote-wildcard-pattern): Doc fix. |
diff --git a/lisp/simple.el b/lisp/simple.el index 999809e6bd8..b7f1fca0f37 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -1359,7 +1359,6 @@ this by calling a function defined by `minibuffer-default-add-function'.") | |||
| 1359 | "Return a list of all completions without the default value. | 1359 | "Return a list of all completions without the default value. |
| 1360 | This function is used to add all elements of the completion table to | 1360 | This function is used to add all elements of the completion table to |
| 1361 | the end of the list of defaults just after the default value." | 1361 | the end of the list of defaults just after the default value." |
| 1362 | (interactive) | ||
| 1363 | (let ((def minibuffer-default) | 1362 | (let ((def minibuffer-default) |
| 1364 | (all (all-completions "" | 1363 | (all (all-completions "" |
| 1365 | minibuffer-completion-table | 1364 | minibuffer-completion-table |