From: Arthur Miller <arthur.miller@live.com>
To: Daniele Nicolodi <daniele@grinta.net>
Cc: emacs-devel@gnu.org
Subject: Re: Is this "save practice" (setting default font scale)?
Date: Fri, 20 Nov 2020 16:26:08 +0100 [thread overview]
Message-ID: <AM0PR06MB65772DDC3965AE8CEDE6A19A96FF0@AM0PR06MB6577.eurprd06.prod.outlook.com> (raw)
In-Reply-To: <e00ba452-75a0-4808-702e-2ddcfb6260a1@grinta.net> (Daniele Nicolodi's message of "Fri, 20 Nov 2020 16:06:29 +0100")
Daniele Nicolodi <daniele@grinta.net> writes:
> On 20/11/2020 15:51, Arthur Miller wrote:
>> For few years now I have been using this to set default font height
>> in my .emacs, as told by Mr. Eliz some few years ago in some social
>> media thread:
>>
>> (add-hook 'after-make-frame-functions
>> (lambda (frame)
>> (set-face-attribute 'default nil :height 160)))
>>
>> This also seem to be THE way to customize fonts as found on numerous
>> SX/Reddit/blogs/etc discussions. So far so good.
>>
>> I have refactored my init file and trying to push some things to
>> early-init to save some load time. What I have found is that above
>> little code adds ~200 ms to the init time; take or give.
>>
>> Maybe it shouldn't but I have profiled several times and it always add
>> to startup time.
>>
>> Furthre investigation discovered a giant list of faces in Emacs:
>> face-new-frame-alist. Setting corresponding value in face vector for
>> 'default seems to achieve exactly same, but without measurable
>> difference at startup:
>>
>> (aset (cdr (assoc 'default face-new-frame-defaults)) 4 160)
>>
>> So my question is, is this safe to do, any pitfals I am not aware of
>> (more then me poking into internals which may change in future)?
>
> I think the recommended way to change face properties is via the
> customize facility, thus through the the custom-set-faces function:
>
> (custom-set-faces '(default ((t (:height 160)))))
Oki, it seems to achieve same result at about same speed too.
It is slightly more complicated; it calls custom-theme-set-faces under
the hood, but at least on my computer I can't seem to be able to measure
the time difference. Seems that every startup varies somewhere around
~100 ms, with both versions I am getting startups 0.32 ~ 0.34 secs.
custom-set-faces seems to be slightly more descriptive, than setting
value directly so I'll probably go with it; thanks!
next prev parent reply other threads:[~2020-11-20 15:26 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-20 14:51 Is this "save practice" (setting default font scale)? Arthur Miller
2020-11-20 15:06 ` Daniele Nicolodi
2020-11-20 15:26 ` Arthur Miller [this message]
2020-11-20 15:14 ` Eli Zaretskii
2020-11-20 15:37 ` Arthur Miller
2020-11-20 20:05 ` Eli Zaretskii
2020-11-21 6:33 ` Arthur Miller
2020-11-20 22:47 ` chad
2020-11-21 6:43 ` Arthur Miller
2020-11-21 7:18 ` Manuel Uberti
2020-11-21 13:45 ` Arthur Miller
2020-11-21 16:04 ` Eli Zaretskii
2020-11-21 17:05 ` arthur miller
2020-11-20 15:52 ` Stefan Monnier
2020-11-21 6:12 ` Arthur Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=AM0PR06MB65772DDC3965AE8CEDE6A19A96FF0@AM0PR06MB6577.eurprd06.prod.outlook.com \
--to=arthur.miller@live.com \
--cc=daniele@grinta.net \
--cc=emacs-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.