[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Window too big
From: |
Michael Heerdegen |
Subject: |
Re: Window too big |
Date: |
Wed, 07 Oct 2015 11:42:45 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) |
J G Miller <miller@yoyo.ORG> writes:
> You can also set frame sizes (and other properties) in emacsrc file with
>
> (cond ((eq window-system 'x)
>
> (setq default-frame-alist
> '((user-position . t)
> (user-size . t)
> (height . 42)
> (width . 108)
> (top . 0)
> (left . 0)
> (cursor-color . "#dddd44")
> (mouse-color . "#ffffaa")))
>
> )
>
> but the values for height widrth and position here are overriden (in
> my experience) by the Emacs apps-default values if they are set.
;; let the first frame appear according to `default-frame-alist'
(modify-frame-parameters (selected-frame) default-frame-alist)
in the init file can work around that problem. The starting frame is a
bit special in Emacs.
Michael.