Browse Source

Merge pull request #26 from mbraem/master

tool-bar-mode does not properly work in a tty
custom
Bozhidar Batsov 14 years ago
parent
commit
f5d6fd96fd
  1. 5
      modules/prelude-ui.el

5
modules/prelude-ui.el

@ -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)

Loading…
Cancel
Save