From 861e478a700e9f7a762dc775d88427bbba5d6a8a Mon Sep 17 00:00:00 2001 Message-Id: <861e478a700e9f7a762dc775d88427bbba5d6a8a.1717783977.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 23 Jul 2015 10:11:45 +0100 Subject: [PATCH] dot/emacs: Reformat frame-list settings stanza. Organization: Straylight/Edgeware From: Mark Wooding --- dot/emacs | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/dot/emacs b/dot/emacs index 6b15066..d091acd 100644 --- a/dot/emacs +++ b/dot/emacs @@ -435,18 +435,17 @@ ;; Default frame size. (setq default-frame-alist - (mdw-uniquify-alist - `((width . ,(if (>= emacs-major-version 21) 77 78)) - (height . 33) - (vertical-scroll-bars . right) - (cursor-type . bar) - (cursor-blink . t) - (left-fringe . 5) - (right-fringe . 5) - (scroll-bar-width . 15) - (cursor-color . "red") - (background-mode . ,(if mdw-black-background 'dark 'light))))) -(setq window-system-default-frame-alist + `((width . ,(if (>= emacs-major-version 21) 77 78)) + (height . 33) + (vertical-scroll-bars . right) + (cursor-type . bar) + (cursor-blink . t) + (left-fringe . 5) + (right-fringe . 5) + (scroll-bar-width . 15) + (cursor-color . "red") + (background-mode . ,(if mdw-black-background 'dark 'light))) + window-system-default-frame-alist '((pm (font . "-os2-System VIO-medium-r-normal--*-40-*-*-m-*-cp850") (menu-font . "8.Helv") (background-color . "lightgrey")) -- [mdw]