summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-02-06 20:50:57 +0200
committerEli Zaretskii <eliz@gnu.org>2021-02-06 20:50:57 +0200
commitf95266ee68ab85f7a237b473f98b36413b542553 (patch)
tree54354e6122df74cc793c875c039434535d0478fe
parenta3b182954ccf10a0c21568bd91f7725db575690e (diff)
downloademacs-f95266ee68ab85f7a237b473f98b36413b542553.tar.gz
; Fix byte-compilation warning
* test/src/process-tests.el (process-sentinel-interrupt-event): Fix byte compilation warning.
-rw-r--r--test/src/process-tests.el2
1 files changed, 1 insertions, 1 deletions
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)