From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jason Rumney Newsgroups: gmane.emacs.devel Subject: NS font case sensitivity Date: Thu, 18 Jun 2009 21:13:58 +0800 Message-ID: <4A3A3D96.8090406@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1245333540 19511 80.91.229.12 (18 Jun 2009 13:59:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 18 Jun 2009 13:59:00 +0000 (UTC) To: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 18 15:58:53 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MHI8i-0006lP-QH for ged-emacs-devel@m.gmane.org; Thu, 18 Jun 2009 15:58:53 +0200 Original-Received: from localhost ([127.0.0.1]:39957 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHI8i-0001le-8Z for ged-emacs-devel@m.gmane.org; Thu, 18 Jun 2009 09:58:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MHHRy-00046k-5r for emacs-devel@gnu.org; Thu, 18 Jun 2009 09:14:42 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MHHRr-0003ve-I7 for emacs-devel@gnu.org; Thu, 18 Jun 2009 09:14:39 -0400 Original-Received: from [199.232.76.173] (port=56913 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MHHRq-0003v6-JI for emacs-devel@gnu.org; Thu, 18 Jun 2009 09:14:34 -0400 Original-Received: from wf-out-1314.google.com ([209.85.200.171]:21596) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MHHRp-0003IZ-68 for emacs-devel@gnu.org; Thu, 18 Jun 2009 09:14:34 -0400 Original-Received: by wf-out-1314.google.com with SMTP id 23so392118wfg.24 for ; Thu, 18 Jun 2009 06:14:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=w2iZkKbi0HvQR1FprdUXGvqlHIeTEaOQ5wxRC5hjVBE=; b=gCbwr9dIydvftHmU3zoG/3fvkt4WApIVqKjNFfArorZ+gUUCcq3k3Vt7YE9s2IRaoh eFbqfVboaUhxtwriuXvVXjCzf339E8QnNayA68E8o1QaV6kKFl1Zin9FSYrSoUq+Q/N9 2wEuweSztbhlzos/rLKOC09rG4YWoz9MKQsu0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=a6W/Hm1P1PQl0Ql0wHvfZMoNWmfMNupfCp+c/sGE6emHDrV4XLEHEUz4pIzZfsMH2a PDVwpOysQ/O6iWP+uvC80t3p+JZEDYqHPhWHrAy0IUamb32FH5kZU+S2oiFTxifEw/Ga CQ0xGSkdyMhi9rjGaAQ6XU/aAk0yRDpM69ffk= Original-Received: by 10.142.207.6 with SMTP id e6mr1007465wfg.49.1245330872428; Thu, 18 Jun 2009 06:14:32 -0700 (PDT) Original-Received: from ?192.168.249.26? ([124.13.3.16]) by mx.google.com with ESMTPS id 9sm711703wfc.36.2009.06.18.06.14.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 18 Jun 2009 06:14:32 -0700 (PDT) User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) 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:111578 Archived-At: I just now came across this snippet in font.c: Lisp_Object alters = Fassoc_string (val, Vface_alternative_font_family_alist, #ifndef HAVE_NS Qt #else Qnil #endif ); Is there a good reason why the entries in face-alternative-font-family-alist need to be case sensitive on NS when they are not on other platforms?