From: Mark Oteiza Date: Tue, 27 Dec 2016 16:09:39 +0000 (-0500) Subject: Remove a use of lexical-let X-Git-Tag: emacs-26.0.90~1005 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee264827f3684e211951b493fffb2193e4cba776;p=emacs.git Remove a use of lexical-let * lisp/gnus/message.el (message-completion-function): Just use let, since the file now uses lexical-binding. --- 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)))))