summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-15 13:31:08 -0500
committerCraig Jennings <c@cjennings.net>2025-10-15 13:31:08 -0500
commitff9d96460e13e59edb4674cc0e050924718c33bb (patch)
tree8f9c0bfe10dc09ebbd1799044686ec5ac2a1ac0f /modules
parentba88bbf57d7e718c04fa79e9d5af5e582eb35227 (diff)
fix: host-environment: issue with string vs symbol for system-type
Diffstat (limited to 'modules')
-rw-r--r--modules/host-environment.el2
1 files changed, 1 insertions, 1 deletions
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."