From bc2f8a0ec9908dbb92d0dd1cb2e84fa9196e8e8c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 8 Jun 2018 13:30:20 +0200 Subject: [PATCH] Don't complain about used _directory letvar Byte-compiler-sama must be appeased. --- core/core-lib.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-lib.el b/core/core-lib.el index 83b891fbd..4df5de6f1 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -390,7 +390,7 @@ For example: (file-exists-p! (or doom-core-dir \"~/.config\" \"some-file\") \"~\")" (if directory - `(let ((_directory ,directory)) + `(let ((--directory-- ,directory)) ,(doom--resolve-path-forms spec '_directory)) (doom--resolve-path-forms spec)))