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: Mon, 5 Jun 2006 17:07:21 +0300 Message-ID: <200606051707.22220.pogonyshev@gmx.net> References: <200602191431.36541.pogonyshev@gmx.net> <200606041356.41617.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 1149516186 19632 80.91.229.2 (5 Jun 2006 14:03:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 5 Jun 2006 14:03:06 +0000 (UTC) Cc: Kenichi Handa Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 05 16:03:02 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 1FnFfL-0003ir-W1 for ged-emacs-devel@m.gmane.org; Mon, 05 Jun 2006 16:02:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FnFfL-0005BM-6o for ged-emacs-devel@m.gmane.org; Mon, 05 Jun 2006 10:02:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FnFf8-0005BA-Er for emacs-devel@gnu.org; Mon, 05 Jun 2006 10:02:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FnFf6-0005Ac-Br for emacs-devel@gnu.org; Mon, 05 Jun 2006 10:02:33 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FnFf6-0005AZ-8Q for emacs-devel@gnu.org; Mon, 05 Jun 2006 10:02:32 -0400 Original-Received: from [213.165.64.20] (helo=mail.gmx.net) by monty-python.gnu.org with smtp (Exim 4.52) id 1FnFmF-00075C-LF for emacs-devel@gnu.org; Mon, 05 Jun 2006 10:09:55 -0400 Original-Received: (qmail invoked by alias); 05 Jun 2006 14:02:29 -0000 Original-Received: from dialup.194.158.192.200.belpak.by (EHLO dialup.194.158.192.200.belpak.by) [194.158.192.200] by mail.gmx.net (mp040) with SMTP; 05 Jun 2006 16:02:29 +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:55705 Archived-At: Kenichi Handa wrote: > In article <200606041356.41617.pogonyshev@gmx.net>, Paul Pogonyshev writes: > > >> (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'. > > Do you mean that the methods I suggested didn't work? It worked, but I automated it by modifying `default-frame-alist', so that there is no need to choose fontset by hands. (In fact, I later abandoned cronyx courier since it is not completely fixed-width, but that is a separate matter.) So, your code is fine except that it requires minor manual intervention. Paul