From ff9d96460e13e59edb4674cc0e050924718c33bb Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Wed, 15 Oct 2025 13:31:08 -0500 Subject: fix: host-environment: issue with string vs symbol for system-type --- modules/host-environment.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/host-environment.el b/modules/host-environment.el index 98caff28..c68b2494 100644 --- a/modules/host-environment.el +++ b/modules/host-environment.el @@ -23,7 +23,7 @@ (defun env-linux-p () "Return t if host system is GNU/Linux." - (eq system-type "gnu/linux")) + (eq system-type 'gnu/linux)) (defun env-bsd-p () "Return t if host system is FreeBSD." -- cgit v1.2.3