diff options
| author | Johan Bockgård | 2008-04-11 23:42:25 +0000 |
|---|---|---|
| committer | Johan Bockgård | 2008-04-11 23:42:25 +0000 |
| commit | 69e018a7bd747a354c9efb1110faaf6b10ced2c6 (patch) | |
| tree | 29a870d5f0b8f19c1b7d5554988e3c2e15cfdf02 | |
| parent | ee0fd0d8c31ec7d376433f3b782911b93defa4a7 (diff) | |
| download | emacs-69e018a7bd747a354c9efb1110faaf6b10ced2c6.tar.gz emacs-69e018a7bd747a354c9efb1110faaf6b10ced2c6.zip | |
(lazy-completion-table): Fix debug spec.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f46d81971e..9dd9bbd6df0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-04-11 Johan Bockgård <bojohan@gnu.org> | ||
| 2 | |||
| 3 | * minibuffer.el (lazy-completion-table): Fix debug spec. | ||
| 4 | |||
| 1 | 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * minibuffer.el (complete-with-action, lazy-completion-table): | 7 | * minibuffer.el (complete-with-action, lazy-completion-table): |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 9392885a61e..26cbfc12791 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -80,7 +80,7 @@ from which the minibuffer was entered. The return value of | |||
| 80 | `lazy-completion-table' must be used to initialize the value of VAR. | 80 | `lazy-completion-table' must be used to initialize the value of VAR. |
| 81 | 81 | ||
| 82 | You should give VAR a non-nil `risky-local-variable' property." | 82 | You should give VAR a non-nil `risky-local-variable' property." |
| 83 | (declare (debug (symbol lambda-expr))) | 83 | (declare (debug (symbolp lambda-expr))) |
| 84 | (let ((str (make-symbol "string"))) | 84 | (let ((str (make-symbol "string"))) |
| 85 | `(completion-table-dynamic | 85 | `(completion-table-dynamic |
| 86 | (lambda (,str) | 86 | (lambda (,str) |