0f6ddf4817
Move frame-title-format default from .emacs to default.el (#716443).
9 lines
356 B
EmacsLisp
9 lines
356 B
EmacsLisp
;;; default.el - loaded after ".emacs" on startup
|
|
;;;
|
|
;;; Setting `inhibit-default-init' non-nil in "~/.emacs"
|
|
;;; prevents loading of this file. Also the "-q" option to emacs
|
|
;;; prevents both "~/.emacs" and this file from being loaded at startup.
|
|
|
|
;; default to better frame titles
|
|
(setq-default frame-title-format (concat "%b - emacs@" (system-name)))
|