From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Reitter Newsgroups: gmane.emacs.help Subject: Re: What determines the available font sizes? Date: Wed, 8 Jun 2005 16:03:05 +0100 Message-ID: <4217E402-D0DE-4A71-8466-C126F930DB97@gmail.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v730) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1118243345 18597 80.91.229.2 (8 Jun 2005 15:09:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 8 Jun 2005 15:09:05 +0000 (UTC) Cc: Help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 08 17:08:57 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dg275-0007SF-Ta for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Jun 2005 17:05:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dg2Dp-0007GC-9O for geh-help-gnu-emacs@m.gmane.org; Wed, 08 Jun 2005 11:12:01 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dg2Ax-000666-70 for help-gnu-emacs@gnu.org; Wed, 08 Jun 2005 11:09:03 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dg2Am-00061P-OA for Help-gnu-emacs@gnu.org; Wed, 08 Jun 2005 11:08:54 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dg2Aj-0005uE-Bq for Help-gnu-emacs@gnu.org; Wed, 08 Jun 2005 11:08:49 -0400 Original-Received: from [64.233.184.195] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dg28q-000422-7u for Help-gnu-emacs@gnu.org; Wed, 08 Jun 2005 11:06:52 -0400 Original-Received: by wproxy.gmail.com with SMTP id 57so411379wri for ; Wed, 08 Jun 2005 08:03:09 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=jPY4G3x8rZzyBLjjD2PcENoI5v/5iqALMd9EHY0QbcqO4NuiKDITkW4J/XJVg2Me+90DyoOLvhKRpJW1sxV/f/BOYkkkqymjgXzooBGGKhq9q/2gorMZV6pVifHPqiuDtwUCiAeDKUl4Mntjt8BqrXvtXOifVlixZJgfHfyA0iA= Original-Received: by 10.54.78.16 with SMTP id a16mr4577725wrb; Wed, 08 Jun 2005 08:03:09 -0700 (PDT) Original-Received: from ?129.215.110.146? ([129.215.110.146]) by mx.gmail.com with ESMTP id 8sm333508wrl.2005.06.08.08.03.08; Wed, 08 Jun 2005 08:03:09 -0700 (PDT) Original-To: usenet@chris-page.org X-Mailer: Apple Mail (2.730) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:27352 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:27352 > > With create-fontset-from-fontset-spec there certainly is. I think > this > > function can only retrieve the bitmapped fonts from a font suitcase. > > Well, I suppose that's my answer, then. There is no bitmap for 11pt > Monaco, I don't think. Then again, I'm using Aquamacs, which uses > anti-aliased outline fonts. I suppose it's still limiting the > available > font sizes to those with bitmaps. I wonder how I might overcome that > unfortunate limitation. You can add this to your file ~/Library/Preferens/Aquamacs Emacs/ Preferences.el : (condition-case e (create-fontset-from-fontset-spec "-apple-monaco*-medium-r-normal--11-*-*-*-*-*-fontset-monaco11, ascii:-apple-monaco*-medium-r-normal--11-110-75-75-m-120-mac-*, latin-iso8859-1:-apple-monaco*-medium-r-normal--11-110-75-75- m-120-mac-*, latin-iso8859-9:-apple-monaco*-medium-r-normal--11-110-75-75- m-120-mac-*, utf-8:-apple-monaco*-medium-r-normal--11-110-75-75-m-120-mac-*, " nil t) (error (print (list "Warning: " e)))) That should give you a size 11. Peter's solution should work, too. - Dave