Skip to content

Commit f99c9d3

Browse files
committed
style: prefix unused parameters with an underscore
1 parent b2db161 commit f99c9d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-mode.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8474,7 +8474,7 @@ nil."
84748474
Call CALLBACK on success or ERROR-CALLBACK on failure."
84758475
(url-retrieve
84768476
url
8477-
(lambda (status &rest args)
8477+
(lambda (status &rest _)
84788478
(cond
84798479
;; Check for errors
84808480
((plist-get status :error)
@@ -8501,7 +8501,7 @@ Call CALLBACK on success or ERROR-CALLBACK on failure."
85018501
(funcall error-callback err))))))
85028502
nil 'silent 'inhibit-cookies))
85038503

8504-
(defun lsp-download-install--verify-signature (main-url main-file asc-url pgp-key)
8504+
(defun lsp-download-install--verify-signature (_main-url main-file asc-url pgp-key)
85058505
"Verify GPG signature for MAIN-FILE.
85068506
Download signature from ASC-URL and verify with PGP-KEY.
85078507
This is a synchronous operation that should be called after the main download."

0 commit comments

Comments
 (0)