From b4e084fa569eca0941e0debdd1a22d21396e3719 Mon Sep 17 00:00:00 2001 From: Martin Karlsson Date: Wed, 19 Oct 2011 23:16:44 +0300 Subject: [PATCH] `system-type is a symbol, not a string, so `string=' will never evaluate to `t' --- modules/prelude-ui.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/prelude-ui.el b/modules/prelude-ui.el index ad33a23..0c43d69 100644 --- a/modules/prelude-ui.el +++ b/modules/prelude-ui.el @@ -66,7 +66,7 @@ instead of Emacs's default theme." (tool-bar-mode -1) ;; the menu bar is mostly useless as well ;; but removing it under OS X doesn't make much sense - (unless (string= system-type "darwin") + (unless (eq system-type 'darwin) (menu-bar-mode -1)) ;; the blinking cursor is nothing, but an annoyance (blink-cursor-mode -1)