Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8e77fbb4
Commit
8e77fbb4
authored
Dec 19, 2005
by
Stefan Monnier
Browse files
(lazy-completion-table): Don't be fooled if the var holds
a "list" (lambda ...) rather than a real completion list.
parent
61f03d6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
lisp/ChangeLog
lisp/ChangeLog
+11
-3
lisp/subr.el
lisp/subr.el
+1
-1
No files found.
lisp/ChangeLog
View file @
8e77fbb4
2005-12-18 Stefan Monnier <monnier@iro.umontreal.ca>
* subr.el (lazy-completion-table): Don't be fooled if the var holds
a "list" (lambda ...) rather than a real completion list.
* emacs-lisp/cl-extra.el (cl-macroexpand-all): Fix code-walk for
lexical-let when encountering ((lambda (...) ...) ...).
2005-12-17 Chong Yidong <cyd@stupidchicken.com>
* progmodes/sh-script.el (sh-mode):
* progmodes/sh-script.el (sh-mode):
* language/ethio-util.el (ethio-fidel-to-sera-mail-or-marker):
* textmodes/picture.el (picture-mode): Update docstrings.
...
...
@@ -15,8 +23,8 @@
2005-12-17 Chong Yidong <cyd@stupidchicken.com>
* emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
Capture
error from printing circular structures.
* emacs-lisp/edebug.el (edebug-safe-prin1-to-string):
Capture
error from printing circular structures.
2005-12-17 Martin Rudalics <rudalics@gmx.at> (tiny change)
...
...
lisp/subr.el
View file @
8e77fbb4
...
...
@@ -2268,7 +2268,7 @@ from which the minibuffer was entered. The return value of
(
let
((
str
(
make-symbol
"string"
)))
`
(
dynamic-completion-table
(
lambda
(
,
str
)
(
unless
(
list
p
,
var
)
(
when
(
function
p
,
var
)
(
setq
,
var
(
,
fun
,@
args
)))
,
var
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment