all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Peter Dyballa <Peter_Dyballa@Web.DE>
To: Johnny <yggdrasil@gmx.co.uk>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Increase text size of echo area / mode line?
Date: Sat, 21 May 2011 23:51:33 +0200	[thread overview]
Message-ID: <768A03CE-2C71-480E-9710-528498293825@Web.DE> (raw)
In-Reply-To: <87ei3sxnwp.fsf@gmx.co.uk>


Am 21.05.2011 um 14:01 schrieb Johnny:

> Any suggestions welcome!


Did you launch GNU Emacs with the -Q option? This means: without any  
customisation. Now enter: C-h H! After some a buffer HELLO will open.  
How is the size of the Chinese characters in this buffer? How is the  
size of the characters when you perform your usual completion test in  
mini-buffer?

If all looks pretty well you can try: M-x describe-fontset RET. You  
can also position the cursor on one of the Chinese characters in the  
HELLO buffer and type: C-u C-x =. In the just opened *Help* buffer you  
can see the XLFD (X11 Logical Font Descriptor) name of the font used  
by GNU Emacs. You can now try to create a new or modify an existing  
fontset to use the font you just determined:

	(defvar my-fontset-spec)
	(setq my-fontset-spec
	      "-*-fixed-medium-r-normal-*-15-*-*-*-*-*-fontset-normal,
		chinese-big5-1:*-kai-*-*-15-*,
		chinese-big5-2:*-kai-*-*-15-*"
	)
	
	(create-fontset-from-fontset-spec my-fontset-spec)

It seems that font names from the fontconfig service also work:

	(set-fontset-font "fontset-default" 'gb18030 '("STFangsong". "unicode- 
bmp")

or, with a particular size:

	(set-fontset-font "fontset-default" 'gb18030 '("STFangsong-16".  
"unicode-bmp")

Fontsets are documented in GNU Emacs' info system (C-h i).

--
Greetings

   Pete

Isn't vi that text editor with two modes... one that beeps and one  
that corrupts your file?
				– Dan Jacobson, on comp.os.linux.advocacy




  reply	other threads:[~2011-05-21 21:51 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-05 19:10 Increase text size of echo area / mode line? Johnny
2011-04-05 20:46 ` Filippo A. Salustri
2011-04-05 21:27 ` Peter Dyballa
2011-05-21 12:01   ` Johnny
2011-05-21 21:51     ` Peter Dyballa [this message]
2011-05-24 21:13       ` Johnny
2011-05-25  8:45         ` Peter Dyballa
     [not found] <mailman.9.1302034452.11064.help-gnu-emacs@gnu.org>
2011-04-10  2:22 ` Stefan Monnier

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=768A03CE-2C71-480E-9710-528498293825@Web.DE \
    --to=peter_dyballa@web.de \
    --cc=help-gnu-emacs@gnu.org \
    --cc=yggdrasil@gmx.co.uk \
    /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.