From: Eric Abrahamsen Date: Mon, 20 Apr 2020 18:25:40 +0000 (-0700) Subject: Remove unnecessary lambda quoting X-Git-Tag: emacs-28.0.90~7536 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec248719327f6efc1c250259d6b6f1da02d3b363;p=emacs.git Remove unnecessary lambda quoting * lisp/gnus/nntp.el (nntp-open-connection): Buffer has lexical-binding turned on. --- diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 6be6d11a48d..02d90603b40 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -1247,8 +1247,8 @@ If SEND-IF-FORCE, only send authinfo to the server if the (and nntp-connection-timeout (run-at-time nntp-connection-timeout nil - `(lambda () - (nntp-kill-buffer ,pbuffer))))) + (lambda () + (nntp-kill-buffer pbuffer))))) (process (condition-case err (let ((coding-system-for-read 'binary)