Skip to content

Commit

Permalink
WIP: Address unused lexical warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosemer committed Dec 9, 2023
1 parent 0edd692 commit 3b699e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compilation.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 3b699e5

Please sign in to comment.