From ee264827f3684e211951b493fffb2193e4cba776 Mon Sep 17 00:00:00 2001 From: Mark Oteiza Date: Tue, 27 Dec 2016 11:09:39 -0500 Subject: [PATCH] Remove a use of lexical-let * lisp/gnus/message.el (message-completion-function): Just use let, since the file now uses lexical-binding. --- lisp/gnus/message.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 5446aa2b8c9..33c5339e54c 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -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))))) -- 2.39.2