From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Andy Moreton Newsgroups: gmane.emacs.devel Subject: Re: Windows build broken on trunk Date: Wed, 18 Jul 2012 13:23:44 +0100 Message-ID: References: <5006882F.2060503@yandex.ru> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1342614263 30080 80.91.229.3 (18 Jul 2012 12:24:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 18 Jul 2012 12:24:23 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jul 18 14:24:23 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SrTIk-0005S1-VD for ged-emacs-devel@m.gmane.org; Wed, 18 Jul 2012 14:24:23 +0200 Original-Received: from localhost ([::1]:40804 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrTIk-0003KD-92 for ged-emacs-devel@m.gmane.org; Wed, 18 Jul 2012 08:24:22 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:50549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrTIW-0003Jn-0P for emacs-devel@gnu.org; Wed, 18 Jul 2012 08:24:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SrTIN-0003xd-A7 for emacs-devel@gnu.org; Wed, 18 Jul 2012 08:24:07 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:58702) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrTIN-0003xB-3J for emacs-devel@gnu.org; Wed, 18 Jul 2012 08:23:59 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SrTIK-0004jM-IN for emacs-devel@gnu.org; Wed, 18 Jul 2012 14:23:56 +0200 Original-Received: from uk.solarflare.com ([193.34.186.16]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jul 2012 14:23:56 +0200 Original-Received: from andrewjmoreton by uk.solarflare.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Jul 2012 14:23:56 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 40 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: uk.solarflare.com User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (windows-nt) Cancel-Lock: sha1:52c4WPny6u5gCGxz+pyfYf10sbE= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:151731 Archived-At: On Wed 18 Jul 2012, Andreas Schwab wrote: > Dmitry Antipov writes: > >> IIUC it's font handling stuff, and (IMHO) it should be renamed from too >> generic name to something which is closely related to symbol's real use. > > The symbol's real use is the Lisp symbol symbol. > > Andreas. I think you are incorrect on this point. The manual has this in node "Windows Fonts": `script' Specifies a Unicode subrange the font should support. The following scripts are recognized on Windows: `latin', `greek', `coptic', `cyrillic', `armenian', `hebrew', `arabic', `syriac', `nko', `thaana', `devanagari', `bengali', `gurmukhi', `gujarati', `oriya', `tamil', `telugu', `kannada', `malayam', `sinhala', `thai', `lao', `tibetan', `myanmar', `georgian', `hangul', `ethiopic', `cherokee', `canadian-aboriginal', `ogham', `runic', `khmer', `mongolian', `symbol', `braille', `han', `ideographic-description', `cjk-misc', `kana', `bopomofo', `kanbun', `yi', `byzantine-musical-symbol', `musical-symbol', and `mathematical'. >From src/w32font.c, line 79: static Lisp_Object Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan; This Qsymbol is used for the script property, and is distinct from the Lisp symbol symbol used in the rest of emacs. The name clash is unfortunate. AndyM