Skip to content

Commit

Permalink
Merge pull request technomancy#115 from hellekin/emacs-nox
Browse files Browse the repository at this point in the history
Ensure tool-bar-mode exists before running it
  • Loading branch information
technomancy committed Dec 1, 2011
2 parents 421d7a3 + c405654 commit bf4c37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starter-kit-defuns.el
Expand Up @@ -93,7 +93,7 @@
(run-hooks 'prog-mode-hook))

(defun esk-turn-off-tool-bar ()
(tool-bar-mode -1))
(if (functionp 'tool-bar-mode) (tool-bar-mode -1)))

(defun esk-untabify-buffer ()
(interactive)
Expand Down

0 comments on commit bf4c37f

Please sign in to comment.