From: Eli Zaretskii Date: Sat, 6 Feb 2021 18:50:57 +0000 (+0200) Subject: ; Fix byte-compilation warning X-Git-Tag: emacs-28.0.90~3901 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f95266ee68ab85f7a237b473f98b36413b542553;p=emacs.git ; Fix byte-compilation warning * test/src/process-tests.el (process-sentinel-interrupt-event): Fix byte compilation warning. --- diff --git a/test/src/process-tests.el b/test/src/process-tests.el index b2e0ec19de1..e62bcb3f7c0 100644 --- a/test/src/process-tests.el +++ b/test/src/process-tests.el @@ -893,7 +893,7 @@ Return nil if FILENAME doesn't exist." ;; Capture any incoming events. (set-process-sentinel proc - (lambda (proc event) + (lambda (_prc event) (push event events))) ;; Wait for the process to start. (sleep-for 2)