From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.help Subject: RE: getting unicode chars to show on Windows Date: Fri, 28 Aug 2009 17:20:04 -0700 Message-ID: References: <66341491-5c5b-406a-bb4c-7f02b7709983@t11g2000prh.googlegroups.com><9b617e7b-9840-499d-b22b-881e4a540a70@h21g2000yqa.googlegroups.com> <6e107769-cd13-43f0-ac9f-8daa9fb83c5e@a39g2000pre.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1251505252 15757 80.91.229.12 (29 Aug 2009 00:20:52 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 29 Aug 2009 00:20:52 +0000 (UTC) To: "'Xah Lee'" , Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Aug 29 02:20:45 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MhBgS-0008WN-Na for geh-help-gnu-emacs@m.gmane.org; Sat, 29 Aug 2009 02:20:45 +0200 Original-Received: from localhost ([127.0.0.1]:47066 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhBgR-0008MZ-Pe for geh-help-gnu-emacs@m.gmane.org; Fri, 28 Aug 2009 20:20:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MhBg4-0008ME-F9 for help-gnu-emacs@gnu.org; Fri, 28 Aug 2009 20:20:20 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MhBfz-0008L0-8B for help-gnu-emacs@gnu.org; Fri, 28 Aug 2009 20:20:19 -0400 Original-Received: from [199.232.76.173] (port=37119 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MhBfy-0008Ku-RF for help-gnu-emacs@gnu.org; Fri, 28 Aug 2009 20:20:14 -0400 Original-Received: from acsinet12.oracle.com ([141.146.126.234]:31479) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MhBfy-0001ZR-Dn for help-gnu-emacs@gnu.org; Fri, 28 Aug 2009 20:20:14 -0400 Original-Received: from rgminet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by acsinet12.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n7T0JVuN009085 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 29 Aug 2009 00:19:33 GMT Original-Received: from abhmt001.oracle.com (abhmt001.oracle.com [141.146.116.10]) by rgminet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n7T0K6ZE008728; Sat, 29 Aug 2009 00:20:06 GMT Original-Received: from dradamslap1 (/141.144.233.236) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 28 Aug 2009 17:20:05 -0700 X-Mailer: Microsoft Office Outlook 11 In-Reply-To: Thread-Index: AcooKCDx13sreWPySG6U4PN1BCdRdgAFR1fg X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.5579 X-Source-IP: abhmt001.oracle.com [141.146.116.10] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090204.4A987436.0092:SCFSTAT5015188,ss=1,fgs=0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) 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:67628 Archived-At: > How do i set a font for the current frame? M-x icicle-font S-TAB Choose any available font, using completion. Use `M-SPC', if you want to match different font parts separately (taking the intersection). > What i want is a toggle-font code so that i can press a key and have > the font set to either a monospaced or variable-spaced one, and just > for the current frame. More specifically: what's the elisp function > that makes the current frame use Courier New? (i'll also need to > know the full string or whatever that emacs uses for what Windows > calls the Courier New font.) (set-frame-parameter nil 'font "-*-Courier New-normal-r-*-*-14-112-96-96-c-*-iso8859-1") or whatever font you want. M-: (frame-parameters) is your friend.