diff options
author | Alan Pearce | 2014-07-11 18:40:18 +0100 |
---|---|---|
committer | Alan Pearce | 2014-07-11 18:40:18 +0100 |
commit | 5aae8180cd7d096de1a916241656887d883b24f1 (patch) | |
tree | b7fe9bdccce40364a61d955fe5cedc74b453e6f2 /tag-emacs | |
parent | 5e96cf05f8fcfa1d8ae0a31f754f7a393cc48280 (diff) | |
download | dotfiles-5aae8180cd7d096de1a916241656887d883b24f1.tar.lz dotfiles-5aae8180cd7d096de1a916241656887d883b24f1.tar.zst dotfiles-5aae8180cd7d096de1a916241656887d883b24f1.zip |
Fix: Emacs: Enable menu-bar on OSX
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index bb261b1..97fa376 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1097,7 +1097,7 @@ mouse-wheel-scroll-amount '(1 ((shift) . 1) ((control))) split-height-threshold 100) -(when (and menu-bar-mode (not window-system 'ns)) +(when (and menu-bar-mode (not (eq window-system 'ns))) (menu-bar-mode -1)) (when scroll-bar-mode (scroll-bar-mode -1) |