Skip to content

Commit

Permalink
style: silence compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
eki3z committed Apr 28, 2024
1 parent ef61da3 commit 07ee51e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mise.el
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ MSG and ARGS are as for that function."
(when mise-mode (mise-mode -1))
(goto-char (point-max))
(let ((inhibit-read-only t))
(insert (apply 'format msg args))
(insert (apply #'format msg args))
(newline)))))

;;; Functions
Expand Down Expand Up @@ -161,7 +161,7 @@ To ensure mise always in path. ARGS is as same as `call-process'."
(if bin-path
(message "mise: please set experimental to true by hand.")
(message "mise: can't find executable.")))))
(apply 'call-process mise-executable args))))
(apply #'call-process mise-executable args))))

(defun mise--detect-configs ()
"Return a list of configs file path for mise in current directory."
Expand Down

0 comments on commit 07ee51e

Please sign in to comment.