From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul Pogonyshev Newsgroups: gmane.emacs.devel Subject: Re: Pango-like font fallback (was Re: Russian numero sign) Date: Sun, 4 Jun 2006 13:56:41 +0300 Message-ID: <200606041356.41617.pogonyshev@gmx.net> References: <200602191431.36541.pogonyshev@gmx.net> <200603082016.37147.pogonyshev@gmx.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1149418546 2683 80.91.229.2 (4 Jun 2006 10:55:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 4 Jun 2006 10:55:46 +0000 (UTC) Cc: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jun 04 12:55:44 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FmqGi-0007Gl-IM for ged-emacs-devel@m.gmane.org; Sun, 04 Jun 2006 12:55:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FmqGi-0004Bw-3n for ged-emacs-devel@m.gmane.org; Sun, 04 Jun 2006 06:55:40 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FmqGW-0004B2-VY for emacs-devel@gnu.org; Sun, 04 Jun 2006 06:55:29 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FmqGT-00048p-6P for emacs-devel@gnu.org; Sun, 04 Jun 2006 06:55:28 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FmqGS-00048e-UN for emacs-devel@gnu.org; Sun, 04 Jun 2006 06:55:24 -0400 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.52) id 1FmqNM-0000Jz-K3 for emacs-devel@gnu.org; Sun, 04 Jun 2006 07:02:32 -0400 Original-Received: (qmail invoked by alias); 04 Jun 2006 10:55:21 -0000 Original-Received: from unknown (EHLO [194.158.209.242]) [194.158.209.242] by mail.gmx.net (mp038) with SMTP; 04 Jun 2006 12:55:21 +0200 X-Authenticated: #16844820 Original-To: emacs-devel@gnu.org User-Agent: KMail/1.7.2 In-Reply-To: Content-Disposition: inline X-Y-GMX-Trusted: 0 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:55684 Archived-At: Kenichi Handa wrote: > In article <200603082016.37147.pogonyshev@gmx.net>, Paul Pogonyshev writes: > > > I went to install all the fonts I could find in my Debian Sarge. And > > found cronyx-courier font, which looks nice _and_ has Cyrillic > > characters. However, when I customize the default face in Emacs and > > set that font family, latin characters are still displayed in > > adobe-courier (though Cyrillic ones are shown in cronyx-courier)... > > And the customization doesn't take any effect after I restart Emacs... > > Any ideas? > > Perhaps that because you don't have > -cronyx-courier-...-iso8859-1. Emacs by default uses an > iso8859-1 font for ASCII. To change it, you must create a > proper fontset by one of these ways: > > (1) In your .emacs: > > (create-fontset-from-fontset-spec > "-cronyx-courier-medium-r-normal--17-*-*-*-m-*-fontset-cronyx17, > ascii:-cronyx-courier-medium-r-normal--17-*-*-*-m-*-iso10646-1") Maybe too late to answer, but I solved it by adding the code above and (setq default-frame-alist (cons (cons 'font "-cronyx-courier-medium-r-normal--17-*-*-*-m-*-iso10646-1") default-frame-alist)) in my `.emacs'. Thanks. Paul