Remove a use of lexical-let
* lisp/gnus/message.el (message-completion-function): Just use let, since the file now uses lexical-binding.
This commit is contained in:
parent
eff237503c
commit
ee264827f3
1 changed files with 1 additions and 1 deletions
|
|
@ -7946,7 +7946,7 @@ regular text mode tabbing command."
|
|||
(not (mail-abbrev-in-expansion-header-p))))
|
||||
(setq alist (cdr alist)))
|
||||
(when (cdar alist)
|
||||
(lexical-let ((fun (cdar alist)))
|
||||
(let ((fun (cdar alist)))
|
||||
;; Even if completion fails, return a non-nil value, so as to avoid
|
||||
;; falling back to message-tab-body-function.
|
||||
(lambda () (funcall fun) 'completion-attempted)))))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue