From: Mark Wooding Date: Mon, 9 Nov 2009 15:00:16 +0000 (+0000) Subject: dot/emacs: Set frame parameters unconditionally. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/c14ce5af75c55213cbb86fc96231dcb7476a7b7e?ds=sidebyside dot/emacs: Set frame parameters unconditionally. Now that Emacs 23 can have terminals and native frames simultaneously, it seems good to always set everything. And it seems to work OK. --- diff --git a/dot/emacs b/dot/emacs index f5d3ce0..d79aeeb 100644 --- a/dot/emacs +++ b/dot/emacs @@ -359,14 +359,13 @@ (mdw-uniquify-alist '((width . 78) (height . 33) - (vertical-scroll-bars . right)) - (and window-system - '((cursor-type . bar) - (cursor-blink . t) - (left-fringe . 5) - (right-fringe . 5) - (scroll-bar-width . 15))) - '((cursor-color . "red")) + (vertical-scroll-bars . right) + (cursor-type . bar) + (cursor-blink . t) + (left-fringe . 5) + (right-fringe . 5) + (scroll-bar-width . 15) + (cursor-color . "red")) (if mdw-black-background '((background-color . "black") (foreground-color . "white")