From c2f8476c8641fcc9a1371d873ed3b5924952a059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lan=20Cr=C3=ADstoffer?= Date: Wed, 29 Jun 2022 18:12:43 +0200 Subject: [PATCH] fix(macos): void-variable newwindow? error Amend: ec2062f51773 --- modules/os/macos/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/os/macos/autoload.el b/modules/os/macos/autoload.el index b446a97de..2ae66e829 100644 --- a/modules/os/macos/autoload.el +++ b/modules/os/macos/autoload.el @@ -36,7 +36,7 @@ "write" "com.googlecode.iterm2" "OpenFileInNewWindows" "-bool" (if bool "true" "false")))) (let ((newwindow? - (if newwindow? (not (equal (read-newwindows) "1"))))) + (if ,newwindow? (not (equal (read-newwindows) "1"))))) (when newwindow? (write-newwindows t)) (unwind-protect (+macos-open-with "iTerm" ,dir)