]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unnecessary lambda quoting
authorEric Abrahamsen <eric@ericabrahamsen.net>
Mon, 20 Apr 2020 18:25:40 +0000 (11:25 -0700)
committerEric Abrahamsen <eric@ericabrahamsen.net>
Mon, 20 Apr 2020 18:25:40 +0000 (11:25 -0700)
* lisp/gnus/nntp.el (nntp-open-connection): Buffer has lexical-binding
turned on.

lisp/gnus/nntp.el

index 6be6d11a48dde35fa9b37038a0d63693f70767e0..02d90603b4031469edaf75a6d932d92135748717 100644 (file)
@@ -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)