Remove unnecessary lambda quoting
* lisp/gnus/nntp.el (nntp-open-connection): Buffer has lexical-binding turned on.
This commit is contained in:
parent
60b97442f7
commit
ec24871932
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue