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: Fri, 15 Feb 2019 18:01:24 +0800	[thread overview]
Message-ID: <27157.3423453205$1550224965@news.gmane.org> (raw)
In-Reply-To: <83lg2io1hi.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 14 Feb 2019 17:04:25 +0200")

Eli Zaretskii <eliz@gnu.org> writes:

>> From: Shuguang Sun <shuguang79@qq.com>
>> Cc: help-gnu-emacs@gnu.org
>> Date: Wed, 13 Feb 2019 13:08:06 +0800
>> 
>> (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.
>
> This will only work for frames other than the first frame.
>
>> 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))
>
> Why do you need to call this in a hook?  Why not just at top level of
> your .emacs file?
>

Sorry for wrong information in last message. Actually the font setting
code above doesn't work in daemon.

runemacs --daemon
OR
 ./emacsclientw.exe --alternate-editor= -n -e "(raise-frame )" &

Then a popup window with:
```
A fatal error has occurred!

....

(type "gdb -p <emacs-PID>" and "continue" inside GDB before clicking YES.)
```

The GDB information:
```
# gdb -p 157284
GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-pc-msys".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word".
Traceback (most recent call last):
  File "<string>", line 3, in <module>
ImportError: No module named libstdcxx.v6.printers
/etc/gdbinit:6: Error in sourced command file:
Error while executing Python code.
Attaching to process 157284
[New Thread 157284.0x26ed8]
[New Thread 157284.0x3374]
[New Thread 157284.0x702c]
Reading symbols from /c/Users/suns18/emacs/bin/emacsclientw...done.
(gdb) continue
Continuing.
[Thread 157284.0x702c exited with code 0]

Thread 1 received signal SIGINT, Interrupt.
[Switching to Thread 157284.0x26ed8]
0x000000010041440f in ?? ()
(gdb)
Continuing.
[Inferior 1 (process 157284) exited with code 02]
(gdb)
(gdb) q
[1]+  Interrupt               ./emacsclientw.exe --alternate-editor= -n -e "(raise-frame )"
```


Backtrace:
000000040018a4e4
00000004000a86f1
00000004000c0316
00000004000c0f94
00000004001def84
00007ffb7240639e
00007ffb72419ff5
00007ffb723a51c0
00007ffb72419076
00000004001bfd4f
00000004001bfdce
0000000400122af3
00000004001213ba
0000000400157318
0000000400123cec
0000000400121338
0000000400157318
0000000400159bb6
000000040012379d
00000004001478af
00000004001480df
0000000400122af3
00000004001213ba
0000000400157318
0000000400123cec
0000000400121338
0000000400157318
0000000400123cec
0000000400121338
0000000400157318
0000000400123cec
00000004001231ba
00000004001234eb
0000000400125253
0000000400120585
00000004000a9945
00000004001204f3
00000004000a8c82
00000004000adf58
00000004000ae29d
00000004001ef085
000000040000139d
0000000400001503
00007ffb7008277c
00007ffb723c0c49


>> 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).
>
> This is documented behavior: to modify the looks ofg the first frame,
> you need to set initial-frame-alist in addition to
> default-frame-alist.
>
>

-- 
Best Regards
Shuguang Sun





  parent reply	other threads:[~2019-02-15 10:01 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
     [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 [this message]
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='27157.3423453205$1550224965@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.