From 3b699e5af9df05e358960311e7d39c7e1207e549 Mon Sep 17 00:00:00 2001 From: Jared Finder Date: Sat, 9 Dec 2023 10:34:49 -0800 Subject: [PATCH] WIP: Address unused lexical warnings --- compilation.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compilation.el b/compilation.el index a72954a..227c790 100644 --- a/compilation.el +++ b/compilation.el @@ -4,8 +4,8 @@ (hook-mode occur-mode-hook next-error-follow-minor-mode) -(defun road-runner (&rest args) +(defun road-runner (&rest _) "BEEP! BEEP!" - (dotimes (i 2) + (dotimes (_ 2) (beep) (sleep-for 0.2))) (add-hook 'compilation-finish-functions 'road-runner)