emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Use closures in hashcash.el


From: John Shahid
Subject: Re: [PATCH] Use closures in hashcash.el
Date: Wed, 13 Mar 2019 12:38:14 -0400
User-agent: mu4e 1.1.0; emacs 27.0.50

Stefan Monnier <address@hidden> writes:

[...]

> Thanks, installed with the change below:
>
>> -    (set-process-filter process `(lambda (process output)
>> -                                   (funcall ,callback process output))))
>> +    (set-process-filter process (lambda (process output)
>> +                                  (funcall callback process output))))

I think you meant:

-       (set-process-filter process `(lambda (process output)
-                                      (funcall ,callback process output))))
+       (set-process-filter process callback))

which is what you indeed installed on master.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]