From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: No malayalam glyphs in language/mlm-util.el Date: Thu, 20 Feb 2003 13:26:57 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20030220131831.A3E0.LEKTU@terra.es> References: <200302201109.UAA20422@etlken.m17n.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1045744594 18943 80.91.224.249 (20 Feb 2003 12:36:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 20 Feb 2003 12:36:34 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18lpwH-0004vO-00 for ; Thu, 20 Feb 2003 13:36:33 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18lq9l-000868-00 for ; Thu, 20 Feb 2003 13:50:30 +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 18lpqP-0000h7-01 for emacs-devel@quimby.gnus.org; Thu, 20 Feb 2003 07:30:29 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18lpp8-0008KP-00 for emacs-devel@gnu.org; Thu, 20 Feb 2003 07:29:10 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18lpo3-0007pI-00 for emacs-devel@gnu.org; Thu, 20 Feb 2003 07:28:03 -0500 Original-Received: from [62.22.27.141] (helo=mail.peoplecall.com) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18lpnE-0007Mq-00 for emacs-devel@gnu.org; Thu, 20 Feb 2003 07:27:12 -0500 Original-Received: from [62.22.27.143] (jbarranquero.ofi.peoplecall.com [62.22.27.143]) by mail.peoplecall.com (8.11.6/8.11.6) with ESMTP id h1KCQuf16266; Thu, 20 Feb 2003 13:26:57 +0100 Original-To: Kenichi Handa , emacs-devel@gnu.org In-Reply-To: <200302201109.UAA20422@etlken.m17n.org> X-Mailer: Becky! ver. 2.05.10 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:11787 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:11787 On Thu, 20 Feb 2003 20:09:16 +0900 (JST), Kenichi Handa wrote: > By the way, I'll explain a bit more about the fontsets. Speaking of fontsets, with this change: Revision 1.74 - Thu Feb 20 08:40:35 2003 UTC (3 hours, 34 minutes ago) by handa Branch: MAIN CVS Tags: HEAD (check_fontset_name): If NAME is nil, return the default fontset. Emacs doesn't load on windowing mode on Windows because term/w32-win.el contains: (set-fontset-font t (make-char 'katakana-jisx0201) '("*" . "JISX0208-SJIS")) (set-fontset-font t (make-char 'latin-jisx0201) '("*" . "JISX0208-SJIS")) (set-fontset-font t (make-char 'japanese-jisx0208) '("*" . "JISX0208-SJIS")) (set-fontset-font t (make-char 'japanese-jisx0208-1978) '("*" . "JISX0208-SJIS")) It's easy enough to change these t to nil, but, why the change? AFAICS, (set-fontset-font [t|nil]...) is not used anywhere on Emacs except by term/w32-win.el, and not surprisingly so, as the docs don't mention the posibility of NAME being other than a string... /L/e/k/t/u