Skip to content

Commit a510837

Browse files
syohexbbatsov
authored andcommitted
Fix byte-compile warnings of unused variables
1 parent 5919418 commit a510837

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inf-clojure.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ Clojure to load that file."
507507
;; :reload-all implies :reload and also forces loading of all libs that the
508508
;; identified libs directly or indirectly load via require or use
509509

510-
(defun inf-clojure-reload-form (proc)
510+
(defun inf-clojure-reload-form (_proc)
511511
"Return the form to query the Inf-Clojure PROC for reloading a namespace.
512512
If you are using REPL types, it will pickup the most appropriate
513513
`inf-clojure-reload-form` variant."
@@ -525,7 +525,7 @@ Clojure to load that file."
525525
:safe #'stringp
526526
:package-version '(inf-clojure . "2.2.0"))
527527

528-
(defun inf-clojure-reload-all-form (proc)
528+
(defun inf-clojure-reload-all-form (_proc)
529529
"Return the form to query the Inf-Clojure PROC for :reload-all of a namespace.
530530
If you are using REPL types, it will pickup the most appropriate
531531
`inf-clojure-reload-all-form` variant."

0 commit comments

Comments
 (0)