From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Benjamin Riefenstahl Newsgroups: gmane.emacs.devel Subject: Re: No malayalam glyphs in language/mlm-util.el Date: 15 Feb 2003 18:54:46 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <200302132347.IAA10169@etlken.m17n.org> <200302141100.UAA11513@etlken.m17n.org> <87u1f5zg81.fsf@vsnl.net> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1045331803 4722 80.91.224.249 (15 Feb 2003 17:56:43 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 15 Feb 2003 17:56:43 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18k6YL-0001E1-00 for ; Sat, 15 Feb 2003 18:56:41 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18k6ls-0000bO-00 for ; Sat, 15 Feb 2003 19:10:40 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18k6Z1-0002QU-03 for emacs-devel@quimby.gnus.org; Sat, 15 Feb 2003 12:57:23 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18k6XG-0001iM-00 for emacs-devel@gnu.org; Sat, 15 Feb 2003 12:55:34 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18k6Wj-0001RS-00 for emacs-devel@gnu.org; Sat, 15 Feb 2003 12:55:02 -0500 Original-Received: from [193.28.100.164] (helo=mail.epost.de) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18k6WX-0000zc-00; Sat, 15 Feb 2003 12:54:49 -0500 Original-Received: from cicero.benny.turtle-trading.net.epost.de (193.99.153.6) by mail.epost.de (6.7.015) id 3E41A7C70010D7FF; Sat, 15 Feb 2003 18:54:47 +0100 Original-To: gnu@vsnl.net (Ramakrishnan M) In-Reply-To: <87u1f5zg81.fsf@vsnl.net> Original-Lines: 31 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-cc: harinath@cs.umn.edu Original-cc: bob@gnu.org Original-cc: bob@rattlesnake.com X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:11670 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:11670 Hi, gnu@vsnl.net (Ramakrishnan M) writes: > Also when I do M-x describe-fontset (default, used by the current > frame) ENTER I get > > current frame is using a font, not a fontset This appears for me also, if I start Emacs without any font configuration. When I set the font in my ~/.Xdefaults (as I usually do) I have a fontset, even with emacs -q. Even when I start emacs -q without an ~/.Xdefaults, I still have two fontsets defined (they are just not set), named "fontset-standard" and "fontset-default". And of these two "fontset-default" seems to be identical to the default font actually used in this situation. So you could probably do: (let ((fontset (query-fontset (frame-parameter nil 'font)))) (when (not fontset) (setq fontset "fontset-default") (set-default-font fontset)) (set-fontset-font fontset (cons (decode-char 'ucs #x0D00) (decode-char 'ucs #x0D7f)) (cons "misc-malayalam" "iso10646-1"))) Hope this helps, benny