Emacs: Forbid dialog boxes

master
Pierre Neidhardt 2017-07-28 17:20:50 +01:00
parent 15b7f4ed6c
commit 5b0635cf68
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@
;;; `tool-bar-mode' and `scroll-bar-mode' might not be compiled in.
(when (fboundp 'tool-bar-mode) (tool-bar-mode -1))
(when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1))
;;; In some cases, Emacs can still decide by itself to use graphical boxes.
;;; Force on using the minibuffer instead.
(setq use-dialog-box nil)
;;; Remember last cursor position.
(require 'saveplace)