all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Shuguang Sun <shuguang79@qq.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Font setting for runemacs and frame
Date: Wed, 13 Feb 2019 13:08:06 +0800	[thread overview]
Message-ID: <21826.4975281031$1550034534@news.gmane.org> (raw)
In-Reply-To: <838sykpd8a.fsf@gnu.org> (Eli Zaretskii's message of "Wed, 13 Feb 2019 05:40:53 +0200")

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Shuguang Sun <shuguang79@qq.com>
>> Cc: help-gnu-emacs@gnu.org
>> Date: Wed, 13 Feb 2019 11:27:23 +0800
>> 
>> Eli Zaretskii <eliz@gnu.org> writes:
>> 
>> > For runemacs, why don't you just use default-frame-alist?
>> 
>> I use window-system-default-frame-alist trying to manage one dot.emacs
>> for both windows box and linux. It seems both default-frame-alist and
>> window-system-default-frame-alist will flush the font setting.
>
> Sorry, I don't think I follow: what do you mean by "flush"?  Can you
> show what you tried with default-frame-alist, and describe the
> effects?
>

(cl-pushnew '(w32 (font . "Consolas-16"))
            window-system-default-frame-alist)

or 

(add-to-list 'default-frame-alist '(font . "Consolas-16"))

To set the default font as Consolas-16 in w32 system.

>> I need set different font according to the fontset, and it seems neither
>> default-frame-alist nor window-system-default-frame-alist is able to
>> make it.
>
> Fontsets are the way to customize fonts more flexibly, so I don't
> think I understand what you mean by "different font according to the
> fontset".  Again, showing what you do or tried but didn't work, will
> help remove any misunderstanding.
>
> I'm asking all these questions because it sounds like you
> unnecessarily use very complicated means, where much simpler means
> exist that should allow you to do what you want.
>
>

To specify font for fontset, cjk etc., I use the code below and actually
make it a function and call it in after-make-frame-functions (new frame
in daemon mode) or call it after-init-hook (intended for runemacs with
`if (not (daemonp))`).

(dolist (charset '(kana han cjk-misc bopomofo chinese-gbk gb18030))
  (set-fontset-font nil charset
                    (font-spec :family "Microsoft Yahei")
                    nil 'prepend))

However with the setting of window-system-default-frame-alist or
default-frame-alist above, it takes no effect until I make a new frame
(after-make-frame-functions). Emacs takes font for the fontsets above
according to Windows font fallbacks, e.g., MS Gothic.


Finally, I find that if I put `(set-frame-font "Consolas-16" nil t)` in
my dot.emacs, the font setting for above fontsets works in runemacs case
without additional frame make action.


-- 
Best Regards
Shuguang Sun



  reply	other threads:[~2019-02-13  5:08 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-12 10:03 Font setting for runemacs and frame Shuguang Sun
2019-02-12 16:17 ` Eli Zaretskii
2019-02-13  3:27   ` Shuguang Sun
     [not found]   ` <vk5yimxo9xlw.fsf@qq.com>
2019-02-13  3:40     ` Eli Zaretskii
2019-02-13  5:08       ` Shuguang Sun [this message]
     [not found]       ` <vk5ybm3g2s3t.fsf@qq.com>
2019-02-14 15:04         ` Eli Zaretskii
2019-02-14 15:28           ` Shuguang Sun
2019-02-14 15:40           ` Robert Pluim
2019-02-14 17:01             ` Eli Zaretskii
2019-02-14 17:14               ` Robert Pluim
2019-02-15  9:57                 ` Robert Pluim
2019-02-15 10:01           ` Shuguang Sun
2019-02-16  3:11             ` next new frame's height after initial frame (Was: Font setting for runemacs and frame) Van L
     [not found]           ` <vk5yimxl1ibv.fsf@qq.com>
2019-02-15 14:24             ` Font setting for runemacs and frame Eli Zaretskii
  -- strict thread matches above, loose matches on Subject: below --
2019-02-12 10:03 Shuguang Sun

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='21826.4975281031$1550034534@news.gmane.org' \
    --to=shuguang79@qq.com \
    --cc=eliz@gnu.org \
    --cc=help-gnu-emacs@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.