diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-15 13:31:08 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-15 13:31:08 -0500 |
| commit | fa5ef898ebdeccd71095f957b22324d8add90e44 (patch) | |
| tree | 54467cb25c111ce3a1fb64f8244ba6e96be7e3ba /modules/host-environment.el | |
| parent | cb63e1deb175bd4d26d9df37258665efddb9bc51 (diff) | |
| download | dotemacs-fa5ef898ebdeccd71095f957b22324d8add90e44.tar.gz dotemacs-fa5ef898ebdeccd71095f957b22324d8add90e44.zip | |
fix: host-environment: issue with string vs symbol for system-type
Diffstat (limited to 'modules/host-environment.el')
| -rw-r--r-- | modules/host-environment.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/host-environment.el b/modules/host-environment.el index 98caff289..c68b24947 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." |
