aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Bockgård2008-04-11 23:42:25 +0000
committerJohan Bockgård2008-04-11 23:42:25 +0000
commit69e018a7bd747a354c9efb1110faaf6b10ced2c6 (patch)
tree29a870d5f0b8f19c1b7d5554988e3c2e15cfdf02
parentee0fd0d8c31ec7d376433f3b782911b93defa4a7 (diff)
downloademacs-69e018a7bd747a354c9efb1110faaf6b10ced2c6.tar.gz
emacs-69e018a7bd747a354c9efb1110faaf6b10ced2c6.zip
(lazy-completion-table): Fix debug spec.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/minibuffer.el2
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 @@
12008-04-11 Johan Bockgård <bojohan@gnu.org>
2
3 * minibuffer.el (lazy-completion-table): Fix debug spec.
4
12008-04-11 Stefan Monnier <monnier@iro.umontreal.ca> 52008-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
82You should give VAR a non-nil `risky-local-variable' property." 82You 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)