chiark / gitweb /
dot/emacs: Set frame parameters unconditionally.
authorMark Wooding <mdw@distorted.org.uk>
Mon, 9 Nov 2009 15:00:16 +0000 (15:00 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Mon, 9 Nov 2009 15:10:53 +0000 (15:10 +0000)
Now that Emacs 23 can have terminals and native frames simultaneously,
it seems good to always set everything.  And it seems to work OK.

dot/emacs

index f5d3ce0184f68961015824a90d56a2f725fb5dd0..d79aeeb16907e827c4b83d79fed59c721c02ef3b 100644 (file)
--- a/dot/emacs
+++ b/dot/emacs
       (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")