Merge pull request #26 from mbraem/master

tool-bar-mode does not properly work in a tty
This commit is contained in:
Bozhidar Batsov 2011-11-23 02:29:50 -08:00
commit f5d6fd96fd

View file

@ -63,7 +63,10 @@ instead of Emacs's default theme."
(when prelude-use-minimalistic-ui (when prelude-use-minimalistic-ui
;; the toolbar is just a waste of valuable screen estate ;; the toolbar is just a waste of valuable screen estate
(tool-bar-mode -1) ;; in a tty tool-bar-mode does not properly auto-load, and is
;; already disabled anyway
(when (fboundp 'tool-bar-mode)
(tool-bar-mode -1))
;; the menu bar is mostly useless as well ;; the menu bar is mostly useless as well
;; but removing it under OS X doesn't make much sense ;; but removing it under OS X doesn't make much sense
(unless (eq system-type 'darwin) (unless (eq system-type 'darwin)