From 0bee96dee3da3ddafb5ff9ad45c7a2a931d7427f Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Tue, 3 Dec 2019 15:54:51 +0100 Subject: [PATCH] fixed error message for 'system-name' --- init.org | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.org b/init.org index 487d98f..4821d79 100644 --- a/init.org +++ b/init.org @@ -64,11 +64,11 @@ * Default settings #+BEGIN_SRC emacs-lisp (defvar me/whoami - (if (string-equal system-name "PMTS01") + (if (string-equal (system-name) "PMTS01") "work_remote" - (if (string-equal system-name "laptop") + (if (string-equal (system-name) "laptop") "home_laptop" - (if (string-equal system-name "PMPCNEU08") + (if (string-equal (system-name) "PMPCNEU08") "work_local" "home_desktop")))) #+END_SRC