From 194bcf4c607cb088803d097cd8aa7e571907a024 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 17 Jun 2018 02:04:41 +0200 Subject: [PATCH] Silence byte-compiler warning: unused lexical arg --- core/core-modules.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-modules.el b/core/core-modules.el index c6ea3b5ef..b7c4b29c9 100644 --- a/core/core-modules.el +++ b/core/core-modules.el @@ -177,7 +177,7 @@ non-nil, return paths of possible modules, activated or otherwise." ;; Prevent packages from being loaded at compile time if they don't meet their ;; own predicates. (push (list :no-require t - (lambda (name args) + (lambda (_name args) (and (bound-and-true-p byte-compile-current-file) (or (when-let* ((pred (or (plist-get args :if) (plist-get args :when))))